clean up and added own TTF file so we are independent from eff-content-fonts
[mancala] / src / mancala.h
1 /*  
2  *  Mancala Headers -- mancala.h
3  *  Kevin Riggle
4  *  http://cmancala.sourceforge.net
5  *  $Source: /cvsroot/cmancala/mancala/src/Attic/mancala.h,v $
6  *  $Revision: 1.4.2.1 $
7  *  $Date: 2003/12/29 05:49:52 $
8  *
9  */
10
11 /* Game constants */
12 #define BOARD_MAX 6
13 #define INITIAL_STONES 4
14
15 extern void gameInit(int *aiBoard, int *humanBoard);
16 extern int gameWon(int *aiBoard, int *humanBoard);
17 extern int move(int *activeBoard, int *passiveBoard, int move);
18 extern int rand_btw(int min, int max);
19
20 /*  End mancala.h  */