Uses of Class
suicideChess.Move

Uses of Move in suicideChess
 

Methods in suicideChess that return Move
 Move ComputerPlayer.doMove(Board bitboard)
          This asks the computer to compute a move
 

Methods in suicideChess that return types with arguments of type Move
static java.util.ArrayList<Move> Rules.getLegalMovesCapture()
          This function return the current status of the ArrayList of all legal Move with a capture.
static java.util.ArrayList<Move> Rules.getLegalMovesNonCapture()
          This function return the current status of the ArrayList of all legal Move without a capture.
 

Methods in suicideChess with parameters of type Move
static void XBoardProtocol.doMove(Move move)
          Sends a move message to XBoard
 void Board.doMove(Move move)
          This methods takes a Move and applies it (updating the bitboard)
 boolean Move.isSimpleEqual(Move that)
          Tests the equality of two moves by just looking at the fromSquare and the toSquare