protected Actor GetActorAt(ICell cell) { DungeonMap map = MainScreen.GameController.CurrentMap; return(map.GetActorAt(cell.X, cell.Y)); }
protected Actor GetActorAt(int x, int y) { DungeonMap map = MainScreen.GameController.CurrentMap; return(map.GetActorAt(x, y)); }