diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-12-14 12:47:41 +0100 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-12-14 12:48:12 +0100 |
commit | 644c1ee1a1f109ae293cc6b09fafe8ba8b448ff3 (patch) | |
tree | 4dd37b0f133f03a420523322bea0a9e081898ded /src/crepe/api/Scene.h | |
parent | 98828008e9e1e3b94f1f882b266ef5d5c2180b9f (diff) |
more demo WIP
Diffstat (limited to 'src/crepe/api/Scene.h')
-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 dcca9d4..5c34b36 100644 --- a/src/crepe/api/Scene.h +++ b/src/crepe/api/Scene.h @@ -39,7 +39,7 @@ public: * \brief Get the scene's name * \return The scene's name */ - virtual std::string get_name() const = 0; + virtual std::string get_name() const { return ""; }; // TODO: Late references should ALWAYS be private! This is currently kept as-is so unit tests // keep passing, but this reference should not be directly accessible by the user!!! |