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