diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2015-09-30 08:51:56 -0400 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2015-09-30 08:51:56 -0400 |
commit | 5d4d0b5845d2b660e6c0d689c16572be538bbbe7 (patch) | |
tree | ce2fa5380fe18026d6c02521915fd4a2e98fd925 /include/common.h | |
parent | 8deee144293102d4498424c38161d13c877250b2 (diff) | |
parent | cfa79da357843f7918ff7108bce80acb59df3413 (diff) |
quest stuff
Diffstat (limited to 'include/common.h')
-rw-r--r-- | include/common.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/include/common.h b/include/common.h index 5dfbb78..fba7e32 100644 --- a/include/common.h +++ b/include/common.h @@ -12,7 +12,6 @@ #include <SDL2/SDL_opengl.h> typedef struct { float x; float y; }vec2; -typedef struct { char* first; char* last; }_name; enum _TYPE { //these are the main types of entities STRUCTURET = -1, @@ -20,6 +19,12 @@ enum _TYPE { //these are the main types of entities NPCT = 1 }; +enum GENDER{ + MALE, + FEMALE, + NONE +}; + #include <Quest.h> #include <entities.h> @@ -38,4 +43,7 @@ int eAmt(T (&)[N]){return N;} extern bool gameRunning; extern unsigned int deltaTime; +extern FILE* config; +extern FILE* names; + #endif // COMMON_H |