aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/api/GameObject.hpp
diff options
context:
space:
mode:
authorLoek Le Blansch <loek@pipeframe.xyz>2024-11-07 15:32:49 +0100
committerLoek Le Blansch <loek@pipeframe.xyz>2024-11-07 15:32:49 +0100
commit156906dca0b84d3fd3c889e1bcda12308b8fe793 (patch)
tree25cc254c7517f7163ec7fd4a6d975d9bad0fe973 /src/crepe/api/GameObject.hpp
parentbe58cc9342a775c21ec2ee28923414a5c612fe6e (diff)
update clang-tidy configuration
Diffstat (limited to 'src/crepe/api/GameObject.hpp')
-rw-r--r--src/crepe/api/GameObject.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/crepe/api/GameObject.hpp b/src/crepe/api/GameObject.hpp
index 7e6148c..bfba7fe 100644
--- a/src/crepe/api/GameObject.hpp
+++ b/src/crepe/api/GameObject.hpp
@@ -9,7 +9,7 @@ namespace crepe {
template <typename T, typename... Args>
T & GameObject::add_component(Args &&... args) {
ComponentManager & mgr = ComponentManager::get_instance();
- return mgr.add_component<T>(this->ID, std::forward<Args>(args)...);
+ return mgr.add_component<T>(this->id, std::forward<Args>(args)...);
}
} // namespace crepe