summaryrefslogtreecommitdiffhomepage
path: root/src/window.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/window.hpp')
-rw-r--r--src/window.hpp17
1 files changed, 10 insertions, 7 deletions
diff --git a/src/window.hpp b/src/window.hpp
index 568fd2a..5771df3 100644
--- a/src/window.hpp
+++ b/src/window.hpp
@@ -3,11 +3,14 @@
#include "glad/glad.h"
#include "GLFW/glfw3.h"
-namespace Window {
- GLFWwindow* get();
- int init(
- unsigned int width,
- unsigned int height,
- const char* title
- );
+namespace Ogle
+{
+ namespace Window {
+ GLFWwindow* get();
+ int init(
+ unsigned int width,
+ unsigned int height,
+ const char* title
+ );
+ }
}