From 11b1b0c29b3911c04a7d784ac9c0c352851be2c9 Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Wed, 21 Oct 2015 08:49:20 -0400 Subject: documentation part 3 --- include/entities.h | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) (limited to 'include/entities.h') 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 +#include #include #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: -- cgit v1.2.3