diff options
author | Andy Belle-Isle <abelleisle@roadrunner.com> | 2015-09-12 21:17:12 -0400 |
---|---|---|
committer | Andy Belle-Isle <abelleisle@roadrunner.com> | 2015-09-12 21:17:12 -0400 |
commit | 328a35846f24aa61524e27d7a08f99617f1b0e55 (patch) | |
tree | 966398509d063b10b3949ec0384e3aa2a5cdb062 /include | |
parent | f3028d986781fb9a5199b6a0394b5a79871af156 (diff) |
Updated village spawning with fixes to other things
Diffstat (limited to 'include')
-rw-r--r-- | include/entities.h | 12 |
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 |