Ejemplo n.º 1
0
 public void issueOrder(Tile ant, Aim direction)
 {
     Console.WriteLine("o " + ant.col + " " + ant.row + " " + direction.symbol);
 }
Ejemplo n.º 2
0
 public void issueOrder(int row, int col, Aim direction)
 {
     Console.WriteLine("o " + col + " " + row + " " + direction.symbol);
 }