summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Barrett <tombarrett@cornell.engr.siu.edu>2015-05-08 14:32:05 -0500
committerTom Barrett <tombarrett@cornell.engr.siu.edu>2015-05-08 14:32:05 -0500
commit01360c3bc92dac9d25ec4df57f5d0f3ca4aa6b2c (patch)
tree501161920a8cc3af97d73ab0c0ca2227ec3bba10
parent88579e8ab934e1ec50ee4c1a5e2d39b1308c1db9 (diff)
changed the color of the basic resource so no confusion with dead bodies and fixed spacing
-rw-r--r--img/Rbasic.pngbin1310 -> 1185 bytes
-rw-r--r--inc/location.hpp6
2 files changed, 3 insertions, 3 deletions
diff --git a/img/Rbasic.png b/img/Rbasic.png
index 9f668cf..a625a84 100644
--- a/img/Rbasic.png
+++ b/img/Rbasic.png
Binary files differ
diff --git a/inc/location.hpp b/inc/location.hpp
index 8bd512c..71bf938 100644
--- a/inc/location.hpp
+++ b/inc/location.hpp
@@ -5,11 +5,11 @@ class Location
{
public:
Location(){x=y=type=0;}; //is this line needed?
- Location(int x1, int y1, int t1){x=x1;y=y1;type=t1;};
+ 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
+ int y; //y-coordinate of entity
+ int type; //value associated with type of entity at location. 1: Creature, 2: Resource
};
#endif