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
ファイル: Minimap.cs プロジェクト: Drenn1/LynnaLab
 public Room GetRoom(int x, int y)
 {
     return(_map?.GetRoom(x, y, Floor));
 }