Example #1
0
        public static IShip Create(PhysicsState state, FactionInfo factionInfo)
        {
            if (!initialized)
            {
                Initialize();
            }
            VuxIntruder returnvalue = new VuxIntruder(state, factionInfo);

            returnvalue.ControlHandler = new DefaultControlHandler();
            return(returnvalue);
        }
Example #2
0
 protected override IShip CreateHardCodedShip()
 {
     return(VuxIntruder.Create(new PhysicsState(), null));
 }
Example #3
0
 VuxIntruder(VuxIntruder copy) : base(copy)
 {
 }