Add more logging

This commit is contained in:
jpirnay
2026-04-17 19:09:16 +02:00
parent bf7869dfce
commit ef088db789
2 changed files with 23 additions and 0 deletions
+1
View File
@@ -27,6 +27,7 @@ class Activity {
explicit Activity(std::string name, GfxRenderer& renderer, MappedInputManager& mappedInput)
: name(std::move(name)), renderer(renderer), mappedInput(mappedInput) {}
virtual ~Activity() = default;
const std::string& getName() const { return name; }
virtual void onEnter();
virtual void onExit();
virtual void loop() {}