diff options
author | max-001 <maxsmits21@kpnmail.nl> | 2024-11-07 12:33:37 +0100 |
---|---|---|
committer | max-001 <maxsmits21@kpnmail.nl> | 2024-11-07 12:33:37 +0100 |
commit | 96ef24654d2ee26184ebcb5b9092649e67afe5d9 (patch) | |
tree | 3149f522a7390a2f7ff98c2b7cc494cf2a69a0a0 /src/crepe/api/Script.hpp | |
parent | cd0940f72e1e0d4abb0bc1ef5fb481b389a1f77a (diff) |
Made game_object_id const
Diffstat (limited to 'src/crepe/api/Script.hpp')
-rw-r--r-- | src/crepe/api/Script.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/crepe/api/Script.hpp b/src/crepe/api/Script.hpp index d96c0e8..6d111af 100644 --- a/src/crepe/api/Script.hpp +++ b/src/crepe/api/Script.hpp @@ -19,7 +19,7 @@ T & Script::get_component() { template <typename T> std::vector<std::reference_wrapper<T>> Script::get_components() { ComponentManager & mgr = ComponentManager::get_instance(); - return mgr.get_components_by_id<T>(this->parent->game_object_id); + return mgr.get_components_by_id<T>(this->parent->GAME_OBJECT_ID); } } // namespace crepe |