ImHex/source/window/macos_window.cpp

25 lines
289 B
C++
Raw Normal View History

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