summaryrefslogtreecommitdiff
path: root/src/config.h
diff options
context:
space:
mode:
authorepoch <epoch@hacking.allowed.org>2016-12-21 11:58:30 -0600
committerepoch <epoch@hacking.allowed.org>2016-12-21 11:58:30 -0600
commitf7353ec277198b295c6c842a4a4a07b403b2a572 (patch)
tree76196d53de0ad7de24c1359589c154e44ad16b6a /src/config.h
parent31678be1711af6afeb1ba9a7d02cc44e26ee9520 (diff)
downloadhackvr-f7353ec277198b295c6c842a4a4a07b403b2a572.tar.gz
hackvr-f7353ec277198b295c6c842a4a4a07b403b2a572.zip
trying to split up hackvr.c into graphical and non-graphical stuff to make it easier to port it to different graphic systems
Diffstat (limited to 'src/config.h')
-rw-r--r--src/config.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/config.h b/src/config.h
new file mode 100644
index 0000000..2e79efb
--- /dev/null
+++ b/src/config.h
@@ -0,0 +1,14 @@
+//stuff I haven't made run-time options yet.
+#ifndef _HACKVR_CONFIG_H_
+#define _HACKVR_CONFIG_H_
+
+#define WALK_SPEED 1
+#define SPLIT_SCREEN 1
+#define CAMERA_SEPARATION 4
+#define RED_AND_BLUE 0
+#define SHAPES 16386
+#define MAX_SIDES 8
+#define WIDTH 1024
+#define HEIGHT 768
+
+#endif