fix struct/class declaration mismatch

This commit is contained in:
jadebenn 2024-12-17 00:55:22 -06:00
parent eab57e4022
commit b9e4aa5344

View File

@ -13,8 +13,8 @@ namespace dECS {
// concept IsComponent = std::derived_from<C, Component>;
struct WorldData;
struct World;
struct Entity;
class World;
class Entity;
struct IStorage;
template <typename C>