mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2025-12-12 03:02:30 +00:00
25 lines
423 B
C++
25 lines
423 B
C++
#include "client/gui/OsGui.hpp"
|
|
|
|
static void* s_GxDevWindow = nullptr;
|
|
|
|
void* OsGuiGetWindow(int32_t type) {
|
|
switch (type) {
|
|
case 0:
|
|
return s_GxDevWindow;
|
|
default:
|
|
return nullptr;
|
|
}
|
|
}
|
|
|
|
bool OsGuiIsModifierKeyDown(int32_t key) {
|
|
// TODO
|
|
return false;
|
|
}
|
|
|
|
int32_t OsGuiProcessMessage(void* message) {
|
|
return 0;
|
|
}
|
|
|
|
void OsGuiSetGxWindow(void* window) {
|
|
s_GxDevWindow = window;
|
|
}
|