feat(event): handle key down and key up events for windows

This commit is contained in:
fallenoak 2023-03-18 17:10:01 -05:00
parent b8ebabaea5
commit 43402e3bd1
4 changed files with 147 additions and 0 deletions

View file

@ -1,5 +1,10 @@
#include "event/Input.hpp"
bool OsGuiIsModifierKeyDown(int32_t key) {
// TODO
return false;
}
int32_t OsGuiProcessMessage(void* message) {
return 0;
}