Ejemplo n.º 1
0
 public void Teleport(Map.Tile where)
 {
     if (CurrentTile != null)
     {
         CurrentTile.OnQuitting();
     }
     CurrentTile = where;
     CurrentTile.Enter(this);
 }