spaceconquest.MiningShip.CreateShip C# (CSharp) Method

CreateShip() public method

public CreateShip ( ) : Ship
return Ship
        public override Ship CreateShip()
        {
            this.modelstring = "MiningShip";
            this.speed = 4;
            this.range = 4;
            this.damage = 1;
            this.cost = 100;
            this.shield = 2;
            this.buildTime = 3;
            this.capacity = 0;
            this.miningRobots = 3;
            this.cancolonize = true;

            Ship newship = new Ship(this);
            return newship;
        }