GameEngine.Start C# (CSharp) Method

Start() public method

public Start ( ) : void
return void
    void Start()
    {
        SpawnEnemyShips();
    }

Usage Example

 public void TestMoveLeft()
 {
     StartCell = new Cell(0, 0);
     _engine.Start();
     _engine.MoveLeft();
     Assert.AreEqual("A1", _engine.CurrentPosition);
     Assert.AreEqual(1, _called);
 }
All Usage Examples Of GameEngine::Start