mirror of
https://github.com/Rundll86/Dog-Lynx-And-HCN.git
synced 2026-05-31 00:11:54 +08:00
11 lines
166 B
GDScript
11 lines
166 B
GDScript
|
|
@tool
|
||
|
|
extends FullscreenPanelBase
|
||
|
|
|
||
|
|
@onready var aboutBtn: Button = $"%aboutBtn"
|
||
|
|
|
||
|
|
func _ready():
|
||
|
|
aboutBtn.pressed.connect(
|
||
|
|
func():
|
||
|
|
UIState.setPanel("Thanks")
|
||
|
|
)
|