diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/common.h | 1 | ||||
-rw-r--r-- | include/entities.h | 6 |
2 files changed, 1 insertions, 6 deletions
diff --git a/include/common.h b/include/common.h index dde3c4a..aa175bc 100644 --- a/include/common.h +++ b/include/common.h @@ -4,6 +4,7 @@ ///THIS FILE IS USED FOR VARIABLES THAT WILL BE ACCESED BY MULTIPLE CLASSES/FILES #include <iostream> +#include <vector> #include <cstdlib> #include <SDL2/SDL.h> #include <SDL2/SDL_image.h> diff --git a/include/entities.h b/include/entities.h index bc277cd..e7389dc 100644 --- a/include/entities.h +++ b/include/entities.h @@ -3,8 +3,6 @@ #include <common.h> -extern int npcAmt; - class Entity{ public: float width; @@ -37,10 +35,6 @@ public: NPC(); void interact(); }; - -extern Entity *entnpc[32]; //The NPC base -extern NPC npc[32]; - class Structures : public Entity{ public: Structures(); |