summaryrefslogtreecommitdiff
path: root/inc/location.hpp
diff options
context:
space:
mode:
authortom <tom@ground-control>2015-05-05 21:01:52 -0500
committertom <tom@ground-control>2015-05-05 21:01:52 -0500
commitaaf0a73578ecbb8212e0d224d6fff68a229b1f48 (patch)
tree46f6d91c1bc02e434812af59477e11fb5e521713 /inc/location.hpp
parent22cd24a1fe33b6bc9f52a600feb5cdb8d868d50f (diff)
fleshed out list, locations of all creatures and resources are now within
Diffstat (limited to 'inc/location.hpp')
-rw-r--r--inc/location.hpp17
1 files changed, 17 insertions, 0 deletions
diff --git a/inc/location.hpp b/inc/location.hpp
new file mode 100644
index 0000000..c4428f5
--- /dev/null
+++ b/inc/location.hpp
@@ -0,0 +1,17 @@
+#ifndef location_h
+#define location_h
+
+class Location
+{
+ public:
+ Location(){x=y=t=0;};
+ Location(int x, int y, int z){};
+ int getType(){return t;};
+
+ private:
+ int x;
+ int y;
+ int t;
+};
+
+#endif