]> git.localhorst.tv Git - orbi.git/blob - src/app/SDL.h
ce116d5d576bad0339627aa7754cc17d3021546b
[orbi.git] / src / app / SDL.h
1 #ifndef ORBI_SDL_H_
2 #define ORBI_SDL_H_
3
4 #include <SDL.h>
5
6
7 namespace orbi {
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