Add backend projects with core models and tests, setup Godot frontend

This commit is contained in:
sokol
2026-02-20 21:01:09 +03:00
parent fc3ad9f6db
commit f320aa50ed
14 changed files with 518 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
using Godot;
public partial class Main : Node2D
{
public override void _Ready()
{
GD.Print("MyBiz - Game Started!");
}
public override void _Process(double delta)
{
}
}