aboutsummaryrefslogtreecommitdiffstats
path: root/include/common.h
diff options
context:
space:
mode:
authorClyne Sullivan <tullivan99@gmail.com>2015-10-08 09:10:08 -0400
committerClyne Sullivan <tullivan99@gmail.com>2015-10-08 09:10:08 -0400
commit3120be4f673c3e106c47ee250ca02179bacec52f (patch)
treee3f8fdcf70e40fdf3320b3f3bad5d392e4149160 /include/common.h
parent281da1f81b1eef9e05e881e12d986b6b45ce8696 (diff)
improved inventory, debug flags
Diffstat (limited to 'include/common.h')
-rw-r--r--include/common.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/include/common.h b/include/common.h
index 3015b11..ed2ed9e 100644
--- a/include/common.h
+++ b/include/common.h
@@ -41,8 +41,6 @@ enum GENDER{
template<typename T, size_t N> //this fuction returns the size of any array
int eAmt(T (&)[N]){return N;}
-GLuint loadTexture(const char *fileName);
-
extern bool gameRunning;
extern unsigned int deltaTime;
extern unsigned int loops;
@@ -53,4 +51,7 @@ extern FILE* names;
extern Mix_Music *music;
extern Mix_Chunk *horn;
+GLuint loadTexture(const char *fileName);
+void DEBUG_printf(const char *s,...);
+
#endif // COMMON_H