aboutsummaryrefslogtreecommitdiff
path: root/7w.h
blob: 76df6a892e04d7cda889a17cb7ecc90552d625c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#define NUMRESOURCES 8
#define WOOD  0
#define COLORWOOD 32
#define STONE 1
#define COLORSTONE 0
#define CLAY  2
#define COLORCLAY 
#define ORE   3
#define CLOTH 4
#define GLASS 5
#define PAPER 6
#define GOLD  7

#define NUMPRODUCTS 13 //includes resources
#define COMPASS 8
#define GEAR  9
#define TABLET 10
#define SHIELD 11
#define VP    12

#define RESOURCE 0
#define INDUSTRY 1
#define STRUCTURE 2
#define COMMERCIAL 4
#define MILITARY 5
#define SCIENTIFIC 6
#define GUILD 7

#define LEFT   0
#define RIGHT  1
#define UP     2
#define DOWN   3
#define ENTER  4
bgstack15