Пример #1
0
 public ArrayList<String> getFromSquares() {
   return m_chess.getFromSquares();
 }
Пример #2
0
 // uses the current position and finds the next best move
 public String getNextHint() {
   return m_chess.getNextHint();
 }
Пример #3
0
 public void executeHint() {
   m_chess.executeHint();
 }
Пример #4
0
 public void executeMove(String move) {
   m_chess.executeMove(move);
 }
Пример #5
0
 public ArrayList<String> getToSquares(String from) {
   return m_chess.getToSquares(from);
 }