]> git.localhorst.tv Git - space.git/blobdiff - src/app/SDL.h
move to SDL2
[space.git] / src / app / SDL.h
diff --git a/src/app/SDL.h b/src/app/SDL.h
new file mode 100644 (file)
index 0000000..ea2a198
--- /dev/null
@@ -0,0 +1,22 @@
+#ifndef SPACE_SDL_H_
+#define SPACE_SDL_H_
+
+#include <SDL.h>
+
+
+namespace space {
+
+class SDL {
+
+public:
+       explicit SDL(Uint32 flags);
+       ~SDL();
+
+       SDL(const SDL &) = delete;
+       SDL &operator =(const SDL &) = delete;
+
+};
+
+}
+
+#endif