initial load of http://downloads.sourceforge.net/project/cmancala/mancala-gui/mancala...
[mancala] / src / main.h
diff --git a/src/main.h b/src/main.h
new file mode 100644 (file)
index 0000000..f89ca88
--- /dev/null
@@ -0,0 +1,35 @@
+/*  
+ *  Main Mancala Program Module Header -- main.h 
+ *  $Id: main.h,v 1.1.2.8 2004/01/16 20:49:30 sparrow_hawk Exp $
+ *
+ *  Copyright (C) 2003 Kevin Riggle 
+ *  http://cmancala.sourcefoge.net
+ *
+ *  This program is free software; you can redistribute it and/or modify it
+ *  under the terms of the GNU General Public License as published by the
+ *  Free Software Foundation; either version 2, or (at your option) any
+ *  later version.
+ *
+ *  This program is distributed in the hope that it will be useful, but
+ *  WITHOUT ANY WARRANTY; without even the implied warranty of
+ *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ *  General Public License for more details, a copy of which may be found in
+ *  the file COPYING provided in the main directory of this release.
+ *
+ */
+
+/* path to resource files */
+#define RES_PATH "/usr/share/pixmaps/mancala"
+#define FONT_PATH "/usr/share/fonts/bitstream-vera"
+
+/* various constants */
+#define STRING_MAX 1000
+#define STONE_MAX 10
+#define DELAY_MAX 1
+
+/* font sizes */
+#define TITLE_SIZE 75
+#define HOME_SIZE 50
+#define BOARD_SIZE 35
+
+/*  End main.h */