Files
ImHex/source/window/macos_window.cpp
2021-08-18 23:12:27 +02:00

21 lines
241 B
C++

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