aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/GameObject.hpp
diff options
context:
space:
mode:
authorheavydemon21 <nielsstunnebrink1@gmail.com>2024-10-22 12:15:49 +0200
committerheavydemon21 <nielsstunnebrink1@gmail.com>2024-10-22 12:15:49 +0200
commit6b213f304b35be5c11bbea305698d6e365a7ffca (patch)
tree4526831be8e6a09a9e1608b71294213ce57fddb1 /src/crepe/GameObject.hpp
parent9037aca03bfa4312794a6954752628381256f777 (diff)
parent30d84ef9ad4a0010288db18294766fd4d5ed6f4a (diff)
Merge branch 'master' into niels/rendering
Diffstat (limited to 'src/crepe/GameObject.hpp')
-rw-r--r--src/crepe/GameObject.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/crepe/GameObject.hpp b/src/crepe/GameObject.hpp
index 5966fbf..8cd1abe 100644
--- a/src/crepe/GameObject.hpp
+++ b/src/crepe/GameObject.hpp
@@ -7,9 +7,9 @@
namespace crepe {
template <typename T, typename... Args>
-void GameObject::add_component(Args &&... args) {
+T & GameObject::add_component(Args &&... args) {
auto & mgr = ComponentManager::get_instance();
- mgr.add_component<T>(id, std::forward<Args>(args)...);
+ return mgr.add_component<T>(id, std::forward<Args>(args)...);
}
} // namespace crepe