mirror of https://github.com/WerWolv/ImHex.git
17 lines
191 B
C++
17 lines
191 B
C++
|
#include "window.hpp"
|
||
|
|
||
|
#if defined(OS_MACOS)
|
||
|
|
||
|
namespace hex {
|
||
|
|
||
|
void Window::setupNativeWindow() {
|
||
|
|
||
|
}
|
||
|
|
||
|
void Window::updateNativeWindow() {
|
||
|
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif
|