From c9ab6ff96bd2b7dc52fcbf5e7491aa2f68d75ade Mon Sep 17 00:00:00 2001 From: Chris Thrasher Date: Thu, 2 May 2024 16:09:32 -0600 Subject: [PATCH] Fix forward declaration of `sf::Event` --- imgui-SFML.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/imgui-SFML.h b/imgui-SFML.h index 84cece4..4738562 100644 --- a/imgui-SFML.h +++ b/imgui-SFML.h @@ -10,7 +10,7 @@ #include "imgui-SFML_export.h" namespace sf { -struct Event; +class Event; class RenderTarget; class RenderTexture; class RenderWindow;