diff options
author | drumsetmonkey <abelleisle@roadrunner.com> | 2015-11-30 07:29:39 -0500 |
---|---|---|
committer | drumsetmonkey <abelleisle@roadrunner.com> | 2015-11-30 07:29:39 -0500 |
commit | e21db32169966b983e09b53801ee1a6d3101e57e (patch) | |
tree | 09093d48beb705e2907a27f0ffb99c3ab9b20706 /include/common.h | |
parent | 19ef54b2c5ffcaefdce352c6f195a62c05c42767 (diff) |
Look at my fancy inventory
Diffstat (limited to 'include/common.h')
-rw-r--r-- | include/common.h | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/include/common.h b/include/common.h index bfd9db6..525a4cd 100644 --- a/include/common.h +++ b/include/common.h @@ -9,6 +9,8 @@ #include <cstdlib> #include <vector> #include <math.h> + #include <thread> + /* * Include GLEW and the SDL 2 headers @@ -60,8 +62,8 @@ typedef struct { #define GAME_NAME "Independent Study v.0.3 alpha" -#define SCREEN_WIDTH 1200 -#define SCREEN_HEIGHT 720 +#define SCREEN_WIDTH 1792 +#define SCREEN_HEIGHT 1008 //#define FULLSCREEN @@ -134,4 +136,9 @@ void DEBUG_prints(const char* file, int line, const char *s,...); void safeSetColor(int r,int g,int b); void safeSetColorA(int r,int g,int b,int a); +unsigned int safe_strlen(const char*); + +void DrawCircle(float cx, float cy, float r, int num_segments); + + #endif // COMMON_H |