7-16-25 @ 3:27AM

This commit is contained in:
2025-07-16 03:27:01 -04:00
parent 7c81e03613
commit c5795028f0
11 changed files with 102 additions and 105 deletions

View File

@@ -5,6 +5,15 @@ public partial class Main : Node
{
public override void _Ready()
{
}
public override void _Process(double DELTA_)
{
if (Input.IsActionJustReleased("quit_game"))
{
GetTree().Quit();
}
}
}