summaryrefslogtreecommitdiff
path: root/inc/constants.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'inc/constants.hpp')
-rw-r--r--inc/constants.hpp19
1 files changed, 19 insertions, 0 deletions
diff --git a/inc/constants.hpp b/inc/constants.hpp
new file mode 100644
index 0000000..2a5b8fb
--- /dev/null
+++ b/inc/constants.hpp
@@ -0,0 +1,19 @@
+#ifndef constants_h
+#define constants_h
+
+const int CREATURES = 10;
+const int RESOURCES = 100;
+const int WINDOW_X = 1080;
+const int WINDOW_Y = 640;
+
+const int CREATURE_START_HEALTH = 500;
+const int CREATURE_MAX_HEALTH = 1000;
+const int CREATURE_BEST_SENSE = 100;
+const int CREATURE_SPEED = 1;
+const int CREATURE_REACH = 5;
+const int CREATURE_SIZE = 10;
+
+const int RESOURCE_SIZE = 5;
+const int RESOURCE_AMOUNT = 100;
+
+#endif