GetRoom() public abstract method

public abstract GetRoom ( int x, int y, int floor ) : Room
x int
y int
floor int
return Room
示例#1
0
 public Room GetRoom(int x, int y)
 {
     if (_map != null)
     {
         return(_map.GetRoom(x, y, Floor));
     }
     return(null);
 }
示例#2
0
 public Room GetRoom(int x, int y)
 {
     return(_map?.GetRoom(x, y, Floor));
 }