spaceconquest.Telescope.CreateShip C# (CSharp) Method

CreateShip() public method

public CreateShip ( ) : Ship
return Ship
        public override Ship CreateShip()
        {
            this.modelstring = "Telescope";
            this.speed = 6;
            this.range = 4;
            this.damage = 1;
            this.cost = 300;
            this.shield = 1;
            this.capacity = 0;
            this.buildTime = 2;

            //this.canjump = true;

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