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