2021-08-18 20:36:46 +00:00
|
|
|
#include "window.hpp"
|
|
|
|
|
|
|
|
#if defined(OS_MACOS)
|
|
|
|
|
|
|
|
namespace hex {
|
|
|
|
|
|
|
|
void Window::setupNativeWindow() {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void Window::updateNativeWindow() {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2021-08-18 21:12:27 +00:00
|
|
|
void Window::drawTitleBar() {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2021-08-18 20:36:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|