summaryrefslogtreecommitdiff
path: root/inc/location.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'inc/location.hpp')
-rw-r--r--inc/location.hpp14
1 files changed, 6 insertions, 8 deletions
diff --git a/inc/location.hpp b/inc/location.hpp
index 2042734..8bd512c 100644
--- a/inc/location.hpp
+++ b/inc/location.hpp
@@ -4,14 +4,12 @@
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;
+ Location(){x=y=type=0;}; //is this line needed?
+ Location(int x1, int y1, int t1){x=x1;y=y1;type=t1;};
+
+ int x; //x-coordinate of entity
+ int y; //y-coordinate of entity
+ int type; //value associated with type of entity at location. 1: Creature, 2: Resource
};
#endif