aboutsummaryrefslogtreecommitdiff
path: root/src/crepe
diff options
context:
space:
mode:
authorLoek Le Blansch <loek@pipeframe.xyz>2024-12-14 17:06:48 +0100
committerLoek Le Blansch <loek@pipeframe.xyz>2024-12-14 17:06:48 +0100
commitb3330349adff16199f5914605738771484170026 (patch)
treeef088d1f14b033c7267091746a66140bab9a61b1 /src/crepe
parent562dc32340cfe6963f53c187f2ffed1f04da003c (diff)
simplify demo codedemo
Diffstat (limited to 'src/crepe')
-rw-r--r--src/crepe/api/Scene.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/crepe/api/Scene.h b/src/crepe/api/Scene.h
index 5c34b36..6830073 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 { return ""; };
+ virtual std::string get_name() const { return "hoi"; };
// 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!!!