From f27bf2dfa4975c7366013bb2f729a9823105361c Mon Sep 17 00:00:00 2001 From: ilotterytea Date: Sun, 2 Feb 2025 22:41:32 +0500 Subject: feat: export package --- src/level.hpp | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/level.hpp') diff --git a/src/level.hpp b/src/level.hpp index 711a884..a0bcb23 100644 --- a/src/level.hpp +++ b/src/level.hpp @@ -39,6 +39,8 @@ namespace silly::editor { const int get_width() const; const int get_height() const; const int get_tile_count() const; + const std::vector &get_layers() const; + std::string export_to_string() const; private: int width, height; @@ -60,6 +62,8 @@ namespace silly::editor { const std::string &get_name() const; + std::string export_to_string() const; + private: const std::string name; -- cgit v1.2.3