ImHex/source/window/macos_window.cpp

21 lines
241 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::setupNativeWindow() {
}
void Window::updateNativeWindow() {
}
void Window::drawTitleBar() {
}
2021-08-18 20:36:46 +00:00
}
#endif