feat(event): implement OsInputGet for windows

This commit is contained in:
fallenoak 2023-03-15 17:40:07 -05:00
parent 788dde31ef
commit 885eeeabd8
7 changed files with 51 additions and 4 deletions

View file

@ -1,5 +1,9 @@
#include "event/Window.hpp"
int32_t OsGuiProcessMessage(void* message) {
return 0;
}
int32_t OsWindowProc(void* window, uint32_t message, uintptr_t wparam, intptr_t lparam) {
return 0;
}