Descriptors now work in metal hopefully

This commit is contained in:
Dynamitos
2024-09-16 13:00:53 +02:00
parent 49e94d3b74
commit 6417ab940d
45 changed files with 435 additions and 476 deletions
+2 -2
View File
@@ -27,8 +27,8 @@ template <typename... Components> class ComponentSystem : public SystemBase {
setupView((getDependencies<Components>() | ...));
}
virtual void update() override {}
virtual void update(Components&... components) {}
virtual void update(entt::entity id, Components&... components) {}
virtual void update(Components&...) {}
virtual void update(entt::entity, Components&...) {}
};
} // namespace System
} // namespace Seele