protected override void initShip()
        {
            shipClass = "Attack Ship";

            shipsHull = new Hull(HULL);
            shipsWeapons = new Weapons(rand, WBASE, WRAND);
            shipShields = new Shield(SHIELD, REGEN);
        }
예제 #2
0
        protected override void initShip()
        {
            shipClass = "";

            shipsHull = new Hull();
            shipsWeapons = new Weapons(rand);
            shipShields = new Shield();
        }