This commit is contained in:
Asuro
2025-02-20 23:46:10 +01:00
parent e568363ca7
commit 43d7d2d012
7 changed files with 67 additions and 53 deletions

View File

@@ -63,8 +63,14 @@ struct PerfCounter
}
};
class SDL_Window;
union SDL_Event;
struct SharedWindowData
{
SDL_Window* SDLWindow = nullptr;
SDL_Event* SDLEvents{nullptr};
uint16_t SDLEventCount = 0;
void* Handle = nullptr;
int32_t WindowWidth = 1920;
int32_t WindowHeight = 1080;