X-Git-Url: https://git.jsancho.org/?a=blobdiff_plain;f=Source%2FGame.h;h=a112d0a47697684f893d76897686707bd8f8b763;hb=36cc3af3e5074215817ddee16defde754e2ad67f;hp=6a7644cab4a57327377436ea30874c863b5b7b87;hpb=8562aa5bebc97ea8a61d056aec3847030c6985b7;p=lugaru.git diff --git a/Source/Game.h b/Source/Game.h index 6a7644c..a112d0a 100644 --- a/Source/Game.h +++ b/Source/Game.h @@ -1,12 +1,10 @@ #ifndef _GAME_H_ #define _GAME_H_ -#ifndef WIN32 #ifdef PLATFORM_MACOSX #include #include "Quicktime.h" #endif -#endif //Jordan included glut.h //#include @@ -16,7 +14,7 @@ #include "WinInput.h" #elif USE_SDL #include "SDL.h" -//#include "SDLInput.h" +#include "SDLInput.h" #else #include "Macinput.h" #endif @@ -40,6 +38,14 @@ extern GLuint rabbittexture; +#ifndef TRUE +#define TRUE 1 +#endif + +#ifndef FALSE +#define FALSE 0 +#endif + class Game { @@ -273,4 +279,4 @@ public: }; -#endif \ No newline at end of file +#endif