diff options
Diffstat (limited to '')
-rwxr-xr-x | engine/xe_window.hpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/engine/xe_window.hpp b/engine/xe_window.hpp index 83b7c98..bb440ad 100755 --- a/engine/xe_window.hpp +++ b/engine/xe_window.hpp @@ -12,7 +12,7 @@ namespace xe { class Window { public: - Window(int w, int h, std::string name); + Window(int w, int h, std::string name, const char *icon); ~Window(); Window(const Window &) = delete; @@ -29,6 +29,7 @@ class Window { private: static void framebufferResizeCallback(GLFWwindow *window, int width, int height); void initWindow(); + void setIcon(const char *icon); int width; int height; |