예제 #1
0
 public static bool isTile(int p)
 {       // true if the piece is any other piece but a plain person or house piece
     return((!Pieces.isHouse(p)) && (!Pieces.isPerson(p)) && (!Pieces.isPersonAndHouse(p)));
 }