public static IShip Create(PhysicsState state, FactionInfo factionInfo)
        {
            if (!initialized)
            {
                Initialize();
            }

            SupoxBlade returnvalue = new SupoxBlade(state, factionInfo);

            returnvalue.ControlHandler = new DefaultControlHandler();
            return(returnvalue);
        }
 protected override IShip CreateHardCodedShip()
 {
     return(SupoxBlade.Create(new PhysicsState(), null));
 }