33 lines
702 B
C++
33 lines
702 B
C++
|
/*
|
||
|
* =====================================================================================
|
||
|
*
|
||
|
* Filename: SDLManager.hpp
|
||
|
*
|
||
|
* Description:
|
||
|
*
|
||
|
* Version: 1.0
|
||
|
* Created: 20/12/2014 01:24:24
|
||
|
* Revision: none
|
||
|
* Compiler: gcc
|
||
|
*
|
||
|
* Author: Quentin BAZIN, <quent42340@gmail.com>
|
||
|
* Company:
|
||
|
*
|
||
|
* =====================================================================================
|
||
|
*/
|
||
|
#ifndef SDLMANAGER_HPP_
|
||
|
#define SDLMANAGER_HPP_
|
||
|
|
||
|
class SDLManager {
|
||
|
public:
|
||
|
static void init();
|
||
|
static void free();
|
||
|
|
||
|
private:
|
||
|
static bool sdlInitialized;
|
||
|
static bool imgInitialized;
|
||
|
static bool mixInitialized;
|
||
|
};
|
||
|
|
||
|
#endif // SDLMANAGER_HPP_
|