]> git.localhorst.tv Git - blank.git/blobdiff - src/init.hpp
make forward key actually go forward ^^
[blank.git] / src / init.hpp
index bf6191b1daf6e1c3e7a8afacb13b3c5d87d0d532..51ab3f834b03054a2783b6838261fd0329d98fe4 100644 (file)
@@ -54,6 +54,12 @@ public:
        Window(const Window &) = delete;
        Window &operator =(const Window &) = delete;
 
+       void GrabInput();
+       void ReleaseInput();
+
+       void GrabMouse();
+       void ReleaseMouse();
+
        GLContext CreateContext();
 
        void Flip();
@@ -77,6 +83,7 @@ public:
        GLContext &operator =(const GLContext &) = delete;
 
        static void EnableVSync();
+       static void EnableBackfaceCulling();
 
 private:
        SDL_GLContext handle;