feat(event): pass custom window proc in gx device creation

This commit is contained in:
fallenoak 2023-03-14 17:15:54 -05:00 committed by GitHub
parent 9ccd1884f3
commit 32f9c81abf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 41 additions and 1 deletions

View file

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