From b9e4aa53440157fbfb0f08ec08c4a076d8227bf2 Mon Sep 17 00:00:00 2001 From: jadebenn Date: Tue, 17 Dec 2024 00:55:22 -0600 Subject: [PATCH] fix struct/class declaration mismatch --- dECS/Core.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dECS/Core.h b/dECS/Core.h index bdfe6af9..1b3127a8 100644 --- a/dECS/Core.h +++ b/dECS/Core.h @@ -13,8 +13,8 @@ namespace dECS { // concept IsComponent = std::derived_from; struct WorldData; - struct World; - struct Entity; + class World; + class Entity; struct IStorage; template