From f81d611f0e298baffad68d83f208e2306fe38739 Mon Sep 17 00:00:00 2001 From: tylermurphy534 Date: Sat, 24 Sep 2022 21:16:13 -0400 Subject: remove Xe From engine class names --- engine/xe_window.hpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'engine/xe_window.hpp') diff --git a/engine/xe_window.hpp b/engine/xe_window.hpp index bf80bd7..e449e34 100755 --- a/engine/xe_window.hpp +++ b/engine/xe_window.hpp @@ -7,13 +7,13 @@ #include namespace xe { -class XeWindow { +class Window { public: - XeWindow(int w, int h, std::string name); - ~XeWindow(); + Window(int w, int h, std::string name); + ~Window(); - XeWindow(const XeWindow &) = delete; - XeWindow &operator=(const XeWindow &); + Window(const Window &) = delete; + Window &operator=(const Window &); bool shouldClose() { return glfwWindowShouldClose(window); } VkExtent2D getExtent() { return { static_cast(width), static_cast(height)}; } -- cgit v1.2.3-freya