aboutsummaryrefslogtreecommitdiff
path: root/7w.h
diff options
context:
space:
mode:
authorNathan Vance <nathav63@gmail.com>2015-01-27 16:12:39 -0500
committerNathan Vance <nathav63@gmail.com>2015-01-27 16:12:39 -0500
commitaafd29405b1d81fcdaf60611c6cfab2915cea337 (patch)
treeac416c38f23bfa811ab05afc04f6360224e9bab8 /7w.h
download7w-aafd29405b1d81fcdaf60611c6cfab2915cea337.tar.gz
7w-aafd29405b1d81fcdaf60611c6cfab2915cea337.tar.bz2
7w-aafd29405b1d81fcdaf60611c6cfab2915cea337.zip
First commit
Diffstat (limited to '7w.h')
-rw-r--r--7w.h33
1 files changed, 33 insertions, 0 deletions
diff --git a/7w.h b/7w.h
new file mode 100644
index 0000000..76df6a8
--- /dev/null
+++ b/7w.h
@@ -0,0 +1,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