예제 #1
0
파일: AStar.cs 프로젝트: nightwolf93/Bfly
 public Boolean IsBlocked(int X, int Y, bool lastTile)
 {
     return(UserItem.IsBlocked(X, Y, lastTile));
 }
예제 #2
0
파일: PathNode.cs 프로젝트: xXSicilyXx/Yupi
 public bool IsBlocked(int x, int y, bool lastTile) => UserItem.IsBlocked(x, y, lastTile);
예제 #3
0
 public bool IsBlocked(int x, int y, bool lastTile)
 {
     return(UserItem.IsBlocked(x, y, lastTile));
 }