diff --git a/CopiumEngine/src/copium/ecs/ECSManager.h b/CopiumEngine/src/copium/ecs/ECSManager.h index 28e38a4..3c5dfd1 100644 --- a/CopiumEngine/src/copium/ecs/ECSManager.h +++ b/CopiumEngine/src/copium/ecs/ECSManager.h @@ -209,6 +209,12 @@ namespace Copium return 0; } + template + EntityId Find() + { + return Find([] (EntityId, const Component& component, const Components&... components) { return true; }); + } + template std::type_index GetComponentId() {