Uses of Class
rules.Move

Packages that use Move
rules   
 

Uses of Move in rules
 

Fields in rules declared as Move
static Move[] Move.CASTLE
          A constant array storing all special castling moves.
 

Methods in rules that return Move
 Move[] Position.generateAllMoves()
          Generates all the moves possible in this Position object.
static Move Move.toMove(java.lang.String m_s)
           
 

Methods in rules with parameters of type Move
 boolean Move.isEqual(Move m)
          Checks whether another move object is the same as the given move object.
 Position Position.makeMove(Move m)
          Makes a move on the position.
 Piece Piece.move(Move m)
          Applies a Move m to this object.