replace ' with "

This commit is contained in:
2024-10-13 20:41:13 +10:00
parent b5264c39f7
commit 2e66680d52
6 changed files with 13 additions and 13 deletions

View File

@@ -28,10 +28,10 @@ func _close() -> void:
func _on_cancel_button_pressed() -> void:
print('cancel')
print("cancel")
_close()
func _on_quit_button_pressed() -> void:
print('quit')
print("quit")
get_tree().quit()