Add initial game code

This commit is contained in:
Aslan 2025-09-12 08:34:06 -04:00
parent f80a60e208
commit 1383997ebf
55 changed files with 1355 additions and 0 deletions

View file

@ -0,0 +1,13 @@
public partial class Item : GameObject
{
public Item(string name, GameObject parent)
: base(name, new CoordinateVector(0, 0), new CoordinateVector(0, 0), parent)
{
}
public override void Simulate()
{
base.Simulate();
}
}