aboutsummaryrefslogtreecommitdiffstats
path: root/include/common.h
diff options
context:
space:
mode:
authordrumsetmonkey <abelleisle@roadrunner.com>2015-09-30 08:50:20 -0400
committerdrumsetmonkey <abelleisle@roadrunner.com>2015-09-30 08:50:20 -0400
commita9f617e28ed109786cbdf9457878a2837d292a9a (patch)
tree492711bb44f97397298006c2e52f4ac8a6f3b19a /include/common.h
parentf39124d141ca3faaa63dd30ba87905837ae47b48 (diff)
Started names and genders
Diffstat (limited to 'include/common.h')
-rw-r--r--include/common.h10
1 files changed, 9 insertions, 1 deletions
diff --git a/include/common.h b/include/common.h
index 8410f58..5ffb2a1 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 <entities.h>
#define SCREEN_WIDTH 1280
@@ -37,4 +42,7 @@ int eAmt(T (&)[N]){return N;}
extern bool gameRunning;
extern unsigned int deltaTime;
+extern FILE* config;
+extern FILE* names;
+
#endif // COMMON_H