Clean rebuild of test-game project

This commit is contained in:
Will Stuckey
2025-10-24 13:39:16 -05:00
commit 7399c1570e
9 changed files with 85 additions and 0 deletions

12
Scripts/Main.cs Normal file
View File

@@ -0,0 +1,12 @@
using Godot;
namespace TestGame
{
public partial class Main : Node2D
{
public override void _Ready()
{
GD.Print("Clean test game started!");
}
}
}