AbstractFactory.EnemyShip.MakeShip C# (CSharp) Method

MakeShip() public abstract method

public abstract MakeShip ( ) : void
return void
        public abstract void MakeShip();

Usage Example

        public EnemyShip orderTheShip(ShipType typeOfShip)
        {
            EnemyShip theEnemyShip = MakeEnemyShip(typeOfShip);

            theEnemyShip.MakeShip();
            theEnemyShip.DisplayEnemyShip();
            theEnemyShip.FollowHeroShip();
            theEnemyShip.EnemyShipShoots();

            return(theEnemyShip);
        }
All Usage Examples Of AbstractFactory.EnemyShip::MakeShip