Object parenting; Ship module prototype; Use 64 bit

This commit is contained in:
Aslan 2026-01-24 23:05:19 -05:00
parent 3f97e18615
commit 8335714acc
30 changed files with 436 additions and 62 deletions

View file

@ -0,0 +1,14 @@
using System.Collections.Generic;
public class Vessel : GameObject
{
public List<VesselModule> Modules = [];
public override void Simulate(double delta)
{
Modules.ForEach(module =>
{
module.Simulate(delta);
});
}
}