misc updates, going to start over using controls

This commit is contained in:
2024-04-15 20:25:04 -05:00
parent 38b9d3a6c7
commit 46acf8e7ca
19 changed files with 294 additions and 12 deletions

17
Row.cs Normal file
View File

@@ -0,0 +1,17 @@
using Godot;
using System;
public partial class Row : Area2D
{
[Export]
public string Id { get; set; }
// Called when the node enters the scene tree for the first time.
public override void _Ready()
{
}
// Called every frame. 'delta' is the elapsed time since the previous frame.
public override void _Process(double delta)
{
}
}