Fix breaking change on linux due to inclusion of Windows header.
All checks were successful
Run ReCI Build Test / Explore-Gitea-Actions (push) Successful in 1m33s

This commit is contained in:
2025-07-13 18:14:48 -05:00
parent 74fc93c4e1
commit 1f8bd9b6c2

View File

@@ -9,8 +9,11 @@
#include <ReWindow/types/MouseButton.h>
#include <ReWindow/types/WindowEvents.h>
#include <queue>
#include <Windows.h>
// TODO: Hide this eventually if possible.
#ifdef WIN32
#include <Windows.h>
#endif
namespace ReWindow {
struct KeyboardState { std::map<Key, bool> PressedKeys; };