Cleaned up project with better structure.

This commit is contained in:
2026-05-09 11:29:48 +02:00
parent 1ad3454f6a
commit 6708aa277f
95 changed files with 711 additions and 700 deletions
+13
View File
@@ -0,0 +1,13 @@
using Godot;
public class Placeholder
{
public string name;
public Transform3D transform;
public Placeholder(string name, Transform3D transform)
{
this.name = name.Split("_")[0].ToLower();
this.transform = transform;
}
}