diff options
Diffstat (limited to 'core/engine.h')
-rw-r--r-- | core/engine.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/core/engine.h b/core/engine.h index fc3e151540..16dfb77593 100644 --- a/core/engine.h +++ b/core/engine.h @@ -39,6 +39,7 @@ class Engine { friend class Main; + String _custom_level; uint64_t frames_drawn; uint32_t _frame_delay; uint64_t _frame_ticks; @@ -66,6 +67,8 @@ public: virtual float get_frames_per_second() const { return _fps; } + String get_custom_level() const { return _custom_level; } + uint64_t get_frames_drawn(); uint64_t get_fixed_frames() const { return _fixed_frames; } |