From c8b79be2b51021c64e567497f28a55e3d931be34 Mon Sep 17 00:00:00 2001 From: IAmMoltony Date: Mon, 1 Jan 2024 18:09:59 +0600 Subject: [PATCH] Add more docs to world manager --- include/worldmgr.hpp | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/include/worldmgr.hpp b/include/worldmgr.hpp index ec7a9f6..49566d4 100644 --- a/include/worldmgr.hpp +++ b/include/worldmgr.hpp @@ -23,14 +23,20 @@ class WorldManager */ struct WorldInfo { + /** + * @brief name of world + */ std::string name; /** - * @note size is in bytes + * @brief Size of the world in bytes */ int size; }; + /** + * @brief Type for list of worlds + */ typedef std::vector WorldList; /**