diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2015-10-21 08:49:20 -0400 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2015-10-21 08:49:20 -0400 |
commit | 11b1b0c29b3911c04a7d784ac9c0c352851be2c9 (patch) | |
tree | 71a5fc7e56ed8f0f35d56f6dc692a333041b4bae /include/entities.h | |
parent | 826e653d45160ceb7c6b8faa2cf44a6af409c2ba (diff) |
documentation part 3
Diffstat (limited to 'include/entities.h')
-rw-r--r-- | include/entities.h | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/include/entities.h b/include/entities.h index 655390b..fab2ca5 100644 --- a/include/entities.h +++ b/include/entities.h @@ -2,6 +2,7 @@ #define ENTITIES_H #include <common.h> +#include <Quest.h> #include <inventory.h> #define DEBUG @@ -11,7 +12,18 @@ #define PLAYER_INV_SIZE 30 // The size of the player's inventory #define NPC_INV_SIZE 3 // Size of an NPC's inventory -extern FILE* names; +enum _TYPE { //these are the main types of entities + STRUCTURET = -1, + PLAYERT = 0, + NPCT = 1, + MOBT = 2 +}; + +enum GENDER{ + MALE, + FEMALE, + NONE +}; class Entity{ public: |