From 5f8caec1e2762568e8e3845f13e980dce8cf13f1 Mon Sep 17 00:00:00 2001 From: ilotterytea Date: Sun, 2 Feb 2025 03:59:39 +0500 Subject: feat: show what level and floor is selected --- src/level.hpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/level.hpp') diff --git a/src/level.hpp b/src/level.hpp index c5eb1ea..5fbb19b 100644 --- a/src/level.hpp +++ b/src/level.hpp @@ -38,6 +38,7 @@ namespace silly::editor { const int get_width() const; const int get_height() const; + const int get_tile_count() const; private: int width, height; @@ -54,6 +55,7 @@ namespace silly::editor { void move_to_floor(int floor_id); TileFloor &get_current_floor(); + const int &get_current_floor_index() const; const std::vector &get_floors() const; const std::string &get_name() const; -- cgit v1.2.3