GameKit
0.0.1a
C++ gamedev tools
include
gk
core
SDLHeaders.hpp
Go to the documentation of this file.
1
/*
2
* =====================================================================================
3
*
4
* Filename: SDLHeaders.hpp
5
*
6
* Description:
7
*
8
* Created: 20/12/2014 01:18:31
9
*
10
* Author: Quentin Bazin, <quent42340@gmail.com>
11
*
12
* =====================================================================================
13
*/
14
#ifndef GK_SDLHEADERS_HPP_
15
#define GK_SDLHEADERS_HPP_
16
17
#ifdef __ANDROID__
18
#include "SDL.h"
19
#include "SDL_image.h"
20
#include "SDL_mixer.h"
21
#include "SDL_ttf.h"
22
#else
23
#include <SDL2/SDL.h>
24
#include <SDL2/SDL_image.h>
25
#include <SDL2/SDL_mixer.h>
26
#include <SDL2/SDL_ttf.h>
27
#endif
28
29
#endif // GK_SDLHEADERS_HPP_
Generated by
1.8.12