initial load of http://downloads.sourceforge.net/project/cmancala/mancala-gui/mancala...
[mancala] / src / main.h
1 /*  
2  *  Main Mancala Program Module Header -- main.h 
3  *  $Id: main.h,v 1.1.2.8 2004/01/16 20:49:30 sparrow_hawk Exp $
4  *
5  *  Copyright (C) 2003 Kevin Riggle 
6  *  http://cmancala.sourcefoge.net
7  *
8  *  This program is free software; you can redistribute it and/or modify it
9  *  under the terms of the GNU General Public License as published by the
10  *  Free Software Foundation; either version 2, or (at your option) any
11  *  later version.
12  *
13  *  This program is distributed in the hope that it will be useful, but
14  *  WITHOUT ANY WARRANTY; without even the implied warranty of
15  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  *  General Public License for more details, a copy of which may be found in
17  *  the file COPYING provided in the main directory of this release.
18  *
19  */
20
21 /* path to resource files */
22 #define RES_PATH "/usr/share/pixmaps/mancala"
23 #define FONT_PATH "/usr/share/fonts/bitstream-vera"
24
25 /* various constants */
26 #define STRING_MAX 1000
27 #define STONE_MAX 10
28 #define DELAY_MAX 1
29
30 /* font sizes */
31 #define TITLE_SIZE 75
32 #define HOME_SIZE 50
33 #define BOARD_SIZE 35
34
35 /*  End main.h */