Esempio n. 1
0
 public void Move() //moves one step
 {
     if (Path.Count > 0)
     {
         Location = Path.Dequeue();
     }
 }