Add Entity::HasComponents() wrapper

This commit is contained in:
Maple Redleaf
2025-11-10 12:19:38 -06:00
parent 1166bc8911
commit 650925b4e1
2 changed files with 5 additions and 0 deletions

View File

@@ -9,6 +9,7 @@ public:
template <typename CompT, typename... Args>
Component *AddComponent(Args &&...args);
template <typename CompT> CompT *GetComponent();
template <typename CompT> bool HasComponent();
void Update();