MiniEngine/include/SDLWrapper/include.h

15 lines
338 B
C++
Raw Normal View History

2017-06-18 17:00:08 +08:00
#pragma once
/// Include SDL Library Headers.
2018-03-04 15:10:49 +08:00
#include "SDL2/SDL.h"
2017-06-18 17:00:08 +08:00
#undef main
2018-03-04 15:10:49 +08:00
#include "SDL2/SDL_image.h"
#include "SDL2/SDL_ttf.h"
#include "SDL2/SDL_mixer.h"
2017-06-18 20:37:45 +08:00
/// Version Requiring Definition
#define _MINIENGINE_SDL_VERSION_ATLEAST(X,Y,Z) SDL_VERSION_ATLEAST(X,Y,Z)
/// Deprecated Definition
#define _DECL_DEPRECATED [[deprecated]]