aboutsummaryrefslogtreecommitdiff
path: root/mwe/ecs-homemade/inc/GameObjectMax.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'mwe/ecs-homemade/inc/GameObjectMax.hpp')
-rw-r--r--mwe/ecs-homemade/inc/GameObjectMax.hpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/mwe/ecs-homemade/inc/GameObjectMax.hpp b/mwe/ecs-homemade/inc/GameObjectMax.hpp
deleted file mode 100644
index 1e952ba..0000000
--- a/mwe/ecs-homemade/inc/GameObjectMax.hpp
+++ /dev/null
@@ -1,6 +0,0 @@
-#include "ComponentManager.h"
-
-template <typename T, typename... Args>
-void GameObject::AddComponent(Args&&... args) {
- ComponentManager::GetInstance().AddComponent<T>(mId, std::forward<Args>(args)...);
-}