diff --git a/headers/Systems/ECS.hpp b/headers/Systems/ECS.hpp index e97fa91..d7c63d4 100644 --- a/headers/Systems/ECS.hpp +++ b/headers/Systems/ECS.hpp @@ -40,6 +40,7 @@ concept Component = std::derived_from; class World { public: // Entity + [[nodiscard]] Entity CreateEntity(); bool EntityExists(const Entity &entity) noexcept; [[nodiscard("It is not guaranteed that an entity can always be destroyed, "