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,9 @@
public class EngineModule : VesselModule
{
public double BaseThrust { get; private set; }
public override double GetThrust()
{
return BaseThrust;
}
}