mirror of
https://port.numenaute.org/aleajactaest/khanat-client.git
synced 2024-11-10 01:10:05 +00:00
16 lines
213 B
GDScript3
16 lines
213 B
GDScript3
|
extends Control
|
||
|
|
||
|
|
||
|
signal play_pressed
|
||
|
signal quit_pressed
|
||
|
|
||
|
func close():
|
||
|
self.hide()
|
||
|
|
||
|
func _on_play_pressed():
|
||
|
emit_signal( "play_pressed" )
|
||
|
|
||
|
|
||
|
func _on_quitter_pressed():
|
||
|
emit_signal( "quit_pressed" )
|