forked from jaildesigner-jailgames/jaildoctors_dilemma
11 lines
189 B
C
11 lines
189 B
C
#ifdef __APPLE__
|
|
#include "/Library/Frameworks/SDL2.framework/Versions/A/Headers/SDL.h"
|
|
#endif
|
|
|
|
#ifdef __linux__
|
|
#ifdef __MIPSEL__
|
|
#include "SDL.h"
|
|
#else
|
|
#include <SDL2/SDL.h>
|
|
#endif
|
|
#endif |