1.1 --- a/Source/CheckersGame.h Mon Jul 14 21:00:15 2008 -0700
1.2 +++ b/Source/CheckersGame.h Mon Jul 21 17:32:21 2008 -0700
1.3 @@ -21,7 +21,7 @@
1.4 THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1.5 */
1.6 #import "Game+Protected.h"
1.7 -@class Grid;
1.8 +@class Grid, GridCell;
1.9
1.10
1.11 /** US Checkers, known as Draughts in the UK. (Other countries use similar but not identical rules.)
1.12 @@ -31,4 +31,7 @@
1.13 Grid *_board;
1.14 }
1.15
1.16 +//protected
1.17 +- (BOOL) canOpponentMoveFrom: (GridCell*)src;
1.18 +
1.19 @end