2021-08-18 22:36:46 +02:00
|
|
|
#include "window.hpp"
|
|
|
|
|
|
|
|
#if defined(OS_LINUX)
|
|
|
|
|
|
|
|
namespace hex {
|
|
|
|
|
2021-08-22 20:24:42 +02:00
|
|
|
void Window::initNative() {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2021-08-18 22:36:46 +02:00
|
|
|
void Window::setupNativeWindow() {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void Window::updateNativeWindow() {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2021-08-18 23:12:27 +02:00
|
|
|
void Window::drawTitleBar() {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2021-08-18 22:36:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|