diff options
Diffstat (limited to 'src/window.hpp')
| -rw-r--r-- | src/window.hpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/window.hpp b/src/window.hpp new file mode 100644 index 0000000..0613da6 --- /dev/null +++ b/src/window.hpp @@ -0,0 +1,11 @@ +#include "glad/glad.h" +#include "GLFW/glfw3.h" + +namespace Window { + GLFWwindow* get(); + void init( + unsigned int width, + unsigned int height, + const char* title + ); +} |
