ui: Use borderless window on Windows

This commit is contained in:
WerWolv
2021-08-18 22:36:46 +02:00
parent 48f27c2174
commit b66304fc91
15 changed files with 360 additions and 86 deletions

View File

@@ -0,0 +1,17 @@
#include "window.hpp"
#if defined(OS_LINUX)
namespace hex {
void Window::setupNativeWindow() {
}
void Window::updateNativeWindow() {
}
}
#endif