diff options
author | tylermurphy534 <tylermurphy534@gmail.com> | 2022-09-24 21:16:13 -0400 |
---|---|---|
committer | tylermurphy534 <tylermurphy534@gmail.com> | 2022-09-24 21:16:13 -0400 |
commit | f81d611f0e298baffad68d83f208e2306fe38739 (patch) | |
tree | f42732149fe2bfb7d28e26ed36067d24fb21b30c /engine/xe_window.hpp | |
parent | delete old files (diff) | |
download | minecraftvulkan-f81d611f0e298baffad68d83f208e2306fe38739.tar.gz minecraftvulkan-f81d611f0e298baffad68d83f208e2306fe38739.tar.bz2 minecraftvulkan-f81d611f0e298baffad68d83f208e2306fe38739.zip |
remove Xe From engine class names
Diffstat (limited to 'engine/xe_window.hpp')
-rwxr-xr-x | engine/xe_window.hpp | 10 |
1 files changed, 5 insertions, 5 deletions
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 <string> 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<uint32_t>(width), static_cast<uint32_t>(height)}; } |