Esempio n. 1
0
 public void MoveEntity(Player entity, Coordinate destination)
 {
     if (entity.CanMove(destination))
     {
         this.position = destination;
     }
 }