2017-05-16 16:27:35 +08:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#ifdef _MSC_VER
|
|
|
|
/// Visual Studio (VC++ Compiler)
|
|
|
|
/// VC++ does not implied C++ exception. Use this to ignore compile warning on this.
|
|
|
|
#pragma warning (disable:4290)
|
2017-05-16 16:50:16 +08:00
|
|
|
#define _COMPILER_LABLE 1
|
2017-05-16 16:27:35 +08:00
|
|
|
#else
|
|
|
|
/// CodeBlocks (MinGW Compiler)
|
2017-05-16 16:50:16 +08:00
|
|
|
#define _COMPILER_LABLE 2
|
|
|
|
#endif /// End of #ifdef _MSC_VER
|
|
|
|
|
2017-05-16 16:27:35 +08:00
|
|
|
#include <SDL2/SDL.h>
|
|
|
|
#undef main
|
|
|
|
#include <SDL2/SDL_image.h>
|
|
|
|
#include <SDL2/SDL_ttf.h>
|
|
|
|
#include <SDL2/SDL_mixer.h>
|
|
|
|
|
|
|
|
#define _DECL_DEPRECATED [[deprecated]]
|