1
1
mirror of https://github.com/Rundll86/Dog-Lynx-And-HCN.git synced 2026-05-30 16:01:53 +08:00
Files
Dog-Lynx-And-HCN/scripts/Contents/Panels/Pause.gd
T

11 lines
166 B
GDScript
Raw Normal View History

@tool
extends FullscreenPanelBase
@onready var aboutBtn: Button = $"%aboutBtn"
func _ready():
aboutBtn.pressed.connect(
func():
UIState.setPanel("Thanks")
)