]> git.localhorst.tv Git - gworm.git/blob - src/app/SDL.h
basic gravity calculations
[gworm.git] / src / app / 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