mirror of
https://github.com/git-learning-game/oh-my-git.git
synced 2024-11-03 19:04:40 +01:00
13 lines
219 B
GDScript
13 lines
219 B
GDScript
extends Window
|
|
|
|
signal entered(text)
|
|
|
|
func _text_entered(text):
|
|
emit_signal("entered", text)
|
|
queue_free()
|
|
|
|
func _notification(what):
|
|
pass
|
|
#ToDo
|
|
#if what == Popup.NOTIFICATION_POST_POPUP:
|
|
# $LineEdit.grab_focus()
|