ImHex/source/window/macos_window.cpp

25 lines
289 B
C++

#include "window.hpp"
#if defined(OS_MACOS)
namespace hex {
void Window::initNative() {
}
void Window::setupNativeWindow() {
}
void Window::updateNativeWindow() {
}
void Window::drawTitleBar() {
}
}
#endif