release v1.3 beta 1

This commit is contained in:
2021-02-18 17:16:33 +01:00
parent 8dc5fe049d
commit 9298025cd6
78 changed files with 23440 additions and 0 deletions

15
source/ifdefs.h Normal file
View File

@@ -0,0 +1,15 @@
#ifdef _WIN64
#include "C:\mingw_dev_lib\include\SDL2\SDL.h"
#endif
#ifdef _WIN32
#include "C:\mingw_dev_lib\include\SDL2\SDL.h"
#endif
#ifdef __APPLE__
#include "/Library/Frameworks/SDL2.framework/Versions/A/Headers/SDL.h"
#endif
#ifdef __linux__
#include "/usr/include/SDL2/SDL.h"
#endif