1
0
mirror of synced 2025-02-12 00:33:00 +01:00
ImHex/source/window/macos_window.cpp

25 lines
289 B
C++
Raw Normal View History

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