diff options
author | max-001 <maxsmits21@kpnmail.nl> | 2024-11-21 09:30:23 +0100 |
---|---|---|
committer | max-001 <maxsmits21@kpnmail.nl> | 2024-11-21 09:30:23 +0100 |
commit | ba93a8deaf7ba4e68c25d74c58637450cbe0e056 (patch) | |
tree | 5c5b8b0f833ced5245bea0bd0e0c059f845cc903 /src/crepe | |
parent | 2f7f7ef167924be7db75aae2cd3f16ec50323980 (diff) |
Added const
Diffstat (limited to 'src/crepe')
-rw-r--r-- | src/crepe/api/Scene.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/crepe/api/Scene.h b/src/crepe/api/Scene.h index 74cfac3..869bf6f 100644 --- a/src/crepe/api/Scene.h +++ b/src/crepe/api/Scene.h @@ -33,7 +33,7 @@ public: * \brief Get the scene's name * \return The scene's name */ - virtual std::string get_name() = 0; + virtual std::string get_name() const = 0; protected: //! Reference to the ComponentManager |