#ifndef COMMON_H #define COMMON_H ///THIS FILE IS USED FOR VARIABLES THAT WILL BE ACCESED BY MULTIPLE CLASSES/FILES #include #include #include #include #include typedef struct { float x; float y; } vec2; #include #define SCREEN_WIDTH 1280 #define SCREEN_HEIGHT 720 //#define FULLSCREEN #define HLINE 2 #define initRand(s) srand(s) #define getRand() rand() template int eAmt(T (&)[N]){return N;} //SDL VARIABLES extern SDL_Window *window; extern SDL_Surface *renderSurface; extern SDL_GLContext mainGLContext; extern bool gameRunning; #endif // COMMON_H