commit no. 5

This commit is contained in:
2026-05-29 10:51:25 -04:00
parent 617c6cc233
commit facb2e227e
27 changed files with 348 additions and 87 deletions
+14
View File
@@ -0,0 +1,14 @@
using Godot;
using System;
public partial class TurnController : Node2D
{
[Signal]
public delegate void TurnDoneEventHandler();
public GridMap2D _grid;
public virtual void StartTurn()
{
}
}