public static IShip Create(PhysicsState state, FactionInfo factionInfo) { if (!initialized) { Initialize(); } MyconPodship returnvalue = new MyconPodship(state, factionInfo); returnvalue.ControlHandler = new DefaultControlHandler(); return(returnvalue); }
protected override IShip CreateHardCodedShip() { return(MyconPodship.Create(new PhysicsState(), null)); }