X-Git-Url: http://git.localhorst.tv/?p=space.git;a=blobdiff_plain;f=src%2Fapp%2FSDL.h;fp=src%2Fapp%2FSDL.h;h=ea2a198305cd2d8339ba3c6bfcebb9924439e524;hp=0000000000000000000000000000000000000000;hb=61c2d30a60d586cbe63885885c6a373c7713af1e;hpb=08d0e47634e1632c96ebe3308535a86f5e625b40 diff --git a/src/app/SDL.h b/src/app/SDL.h new file mode 100644 index 0000000..ea2a198 --- /dev/null +++ b/src/app/SDL.h @@ -0,0 +1,22 @@ +#ifndef SPACE_SDL_H_ +#define SPACE_SDL_H_ + +#include + + +namespace space { + +class SDL { + +public: + explicit SDL(Uint32 flags); + ~SDL(); + + SDL(const SDL &) = delete; + SDL &operator =(const SDL &) = delete; + +}; + +} + +#endif