コード例 #1
0
 /**
  * Delegate {@link PathRestriction}. Please see the "See Also" for usage.
  *
  * @see tosram.algorithm.PathRestriction#canStart(int, int, tosram.MutableRuneMap)
  */
 protected final boolean canStart(int stX, int stY, MutableRuneMap map) {
   return pathRestriction.canStart(stX, stY, map);
 }
コード例 #2
0
 /**
  * Delegate {@link PathRestriction}. Please see the "See Also" for usage.
  *
  * @see tosram.algorithm.PathRestriction#canMove(int, int, java.util.List, tosram.Direction, int,
  *     int, tosram.MutableRuneMap)
  */
 protected final boolean canMove(
     int stX, int stY, List<Direction> dirs, Direction dir, int rsX, int rsY, MutableRuneMap map) {
   return pathRestriction.canMove(stX, stY, dirs, dir, rsX, rsY, map);
 }