]> git.localhorst.tv Git - gworm.git/blob - SDL.h
e93988809c44d646037ceb6579cf5e57a8324439
[gworm.git] / SDL.h
1 #ifndef GWORM_SDL_H_
2 #define GWORM_SDL_H_
3
4 #include <SDL.h>
5
6
7 namespace gworm {
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