Example #1
0
 public void MoveLeft()
 {
     if (IsOk)
     {
         nextX = X - 1;
         nextY = Y;
         Execute(rules[cMap.GetCell(nextX, nextY)]);
     }
 }
Example #2
0
 public char GetLeftCell()
 {
     return(rMap.GetCell(rBot.X - 1, rBot.Y));
 }