1 #ifndef __MOVE_HISTORY_ENTRY_H__
2 #define __MOVE_HISTORY_ENTRY_H__
10 MoveHistoryEntry(Board
*board
, int fromX
, int fromY
, int toX
, int toY
);
11 const MoveHistoryEntry
& operator=(const MoveHistoryEntry
& entry
);
13 Board
*board() { return _board
; }
14 int from_x() { return _from_x
; }
15 int from_y() { return _from_y
; }
16 int to_x() { return _to_x
; }
17 int to_y() { return _to_y
; }
21 int _from_x
, _from_y
, _to_x
, _to_y
;