feat(client): migrate gui functions and implement OsGuiGetWindow

This commit is contained in:
fallenoak 2023-03-20 00:06:50 -05:00 committed by GitHub
parent acaa42019a
commit ba790418e1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
12 changed files with 120 additions and 33 deletions

View file

@ -0,0 +1,18 @@
#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
}