Example #1
0
 public LinkedDriftoid(MotionState MotionState, double Mass, double Radius)
     : base(MotionState, Mass, Radius)
 {
     this._LinkedChildren = new List<LinkedDriftoid>();
 }
Example #2
0
 public PhysicsComponent(double Mass, double Radius, MotionState MotionState)
 {
     this._Mass = Mass;
     this._Radius = Radius;
     this._MotionState = MotionState;
 }
Example #3
0
 public MobileDriftoid(int EngineLevel, MotionState MotionState, double Mass, double Radius)
     : base(MotionState, Mass, Radius)
 {
     this._EngineLevel = EngineLevel;
 }
Example #4
0
 private NucleusDriftoid(Player Owner, MotionState MotionState, double Mass, double Radius)
     : base(MotionState, Mass, Radius)
 {
     this._Owner = Owner;
 }
Example #5
0
 private WeightedDriftoid(int Level, MotionState MotionState, double Mass, double Radius)
     : base(MotionState, Mass, Radius)
 {
     this._Level = Level;
 }