summaryrefslogtreecommitdiff
path: root/inc/dna.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'inc/dna.hpp')
-rw-r--r--inc/dna.hpp21
1 files changed, 21 insertions, 0 deletions
diff --git a/inc/dna.hpp b/inc/dna.hpp
new file mode 100644
index 0000000..4924e15
--- /dev/null
+++ b/inc/dna.hpp
@@ -0,0 +1,21 @@
+#ifndef dna_h
+#define dna_h
+
+#include "constants.hpp"
+
+class Dna
+{
+ public:
+ Dna();
+ int maxHealth;
+ int speed;
+ int reach;
+ int bestSense;
+ int bite;
+ int amountToGrow;
+ int expectedPregnancyTime;
+ int expectedAge;
+ int sizeMax;
+};
+
+#endif