diff options
author | max-001 <maxsmits21@kpnmail.nl> | 2024-10-16 16:50:59 +0200 |
---|---|---|
committer | max-001 <maxsmits21@kpnmail.nl> | 2024-10-16 16:50:59 +0200 |
commit | 018f6209378a0c30c1e44fba2f80888553b9f67c (patch) | |
tree | 46d79df7053170e13fc28baa1d37bea154ec72b7 /mwe/ecs-homemade/inc/GameObjectMax.hpp | |
parent | 5b158d9705f9e912f938f22f2389d6f1dc783b2a (diff) |
Added functionality for scripts
Diffstat (limited to 'mwe/ecs-homemade/inc/GameObjectMax.hpp')
-rw-r--r-- | mwe/ecs-homemade/inc/GameObjectMax.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mwe/ecs-homemade/inc/GameObjectMax.hpp b/mwe/ecs-homemade/inc/GameObjectMax.hpp index 91d51ea..4104589 100644 --- a/mwe/ecs-homemade/inc/GameObjectMax.hpp +++ b/mwe/ecs-homemade/inc/GameObjectMax.hpp @@ -1,7 +1,7 @@ #include "ComponentManager.h" template <typename T, typename... Args> -void GameObject::AddComponent(Args &&... args) { - ComponentManager::GetInstance().AddComponent<T>( +T& GameObject::AddComponent(Args &&... args) { + return ComponentManager::GetInstance().AddComponent<T>( mId, std::forward<Args>(args)...); } |