]> git.localhorst.tv Git - space.git/blob - src/app/SDL.h
move to SDL2
[space.git] / src / app / SDL.h
1 #ifndef SPACE_SDL_H_
2 #define SPACE_SDL_H_
3
4 #include <SDL.h>
5
6
7 namespace space {
8
9 class SDL {
10
11 public:
12         explicit SDL(Uint32 flags);
13         ~SDL();
14
15         SDL(const SDL &) = delete;
16         SDL &operator =(const SDL &) = delete;
17
18 };
19
20 }
21
22 #endif