aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorAndy Belle-Isle <abelleisle@roadrunner.com>2015-09-12 21:17:12 -0400
committerAndy Belle-Isle <abelleisle@roadrunner.com>2015-09-12 21:17:12 -0400
commit328a35846f24aa61524e27d7a08f99617f1b0e55 (patch)
tree966398509d063b10b3949ec0384e3aa2a5cdb062 /include
parentf3028d986781fb9a5199b6a0394b5a79871af156 (diff)
Updated village spawning with fixes to other things
Diffstat (limited to 'include')
-rw-r--r--include/entities.h12
1 files changed, 10 insertions, 2 deletions
diff --git a/include/entities.h b/include/entities.h
index 7cd657a..752908b 100644
--- a/include/entities.h
+++ b/include/entities.h
@@ -8,7 +8,7 @@ public:
float width;
float height;
float speed;
- int type;
+ int type, subtype;
vec2 loc;
vec2 vel;
bool right,left;
@@ -20,7 +20,6 @@ public:
class Player : public Entity{
public:
Player();
- ~Player();
};
class NPC : public Entity{
@@ -28,4 +27,13 @@ public:
NPC();
};
+extern Entity *entnpc[10]; //The NPC base
+extern NPC npc[10];
+
+class Structures : public Entity{
+public:
+ Structures();
+ void spawn(int, float, float);
+};
+
#endif // ENTITIES_H