1 /*
2  * DESCRIPCION DEL JUEGO
3  * Copyright (C) 2007  Javier P�rez Pacheco
4  *
5  * Este juego tienen licencia Creative Commons y se permite
6  * su modificacion y utilizacion libremente siempre y cuando se
7  * cite al autor original y se comparta con la misma licencia.
8  * No se permite su uso comercial.
9  *
10  * Para mas informacion visite la web:
11  * http://creativecommons.org/licenses/by-nc-sa/2.0/es/
12  *
13  * PROGRAMADOR
14  * Javier P�rez Pacheco
15  * Cadiz (Spain)
16  * javielinux@gmail.com
17  *
18  * GRAFISMO Y 3D
19  * Jesus Carrasco
20  * Cadiz (Spain)
21  * carrasco.carrasco@gmail.com
22  *
23  * MUSICA Y GRAFISMO
24  * Shano Lores
25  * Cadiz (Spain)
26  * shanakla@gmail.com
27  *
28  */
29 
30 #ifndef DEFINESGAME_H_
31 #define DEFINESGAME_H_
32 
33 #define POSITION_Y_BOARD 136
34 
35 // board types
36 
37 #define BOARD_6X6 0
38 #define BOARD_7X7 1
39 #define BOARD_8X8 2
40 #define BOARD_9X9 3
41 #define BOARD_10X10 4
42 
43 #define TURN_PLAYER 0
44 #define TURN_ENEMY3 1
45 #define TURN1_ENEMY 2
46 #define TURN2_ENEMY 3
47 
48 // escenary types
49 
50 #define SCENARY_CLOSED 0
51 #define SCENARY_OPENED 1
52 
53 #define ORIGENOBJECT_GAME 0
54 #define ORIGENOBJECT_PERSONAL 1
55 
56 #define TYPEOBJECT_3D 0
57 #define TYPEOBJECT_2D 1
58 #define TYPEOBJECT_TEXT 2
59 
60 #define NVOLUMES 6
61 
62 
63 #endif /* DEFINESGAME_H_ */
64