summary refs log tree commit diff
path: root/src/Window.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/Window.hpp')
-rw-r--r--src/Window.hpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/Window.hpp b/src/Window.hpp
index acd39fe..5a2b640 100644
--- a/src/Window.hpp
+++ b/src/Window.hpp
@@ -12,6 +12,8 @@ public:
 
     GLFWwindow* get();
 
+    void on_size_change(void (* callback)(GLFWwindow*, int, int));
+
     void close();
     void start_frame();
 
@@ -19,6 +21,7 @@ public:
     bool should_close();
 private:
     GLFWwindow* m_window;
+
 };
 
 }
\ No newline at end of file