13 lines
212 B
C
13 lines
212 B
C
#include <SDL2/SDL.h>
|
|
|
|
#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 |