diff --git a/Source/town.cpp b/Source/town.cpp index 435c9f8f3..bbdc9e1a5 100644 --- a/Source/town.cpp +++ b/Source/town.cpp @@ -200,9 +200,6 @@ void DrlgTPass3() } // namespace -/** - * @brief Update the map to show the open hive - */ void TownOpenHive() { dPiece[78][60] = 0x48a; @@ -254,9 +251,6 @@ void TownOpenHive() SetDungeonMicros(); } -/** - * @brief Update the map to show the open grave - */ void TownOpenGrave() { dPiece[36][21] = 0x533; @@ -272,10 +266,6 @@ void TownOpenGrave() SetDungeonMicros(); } -/** - * @brief Initialize town level - * @param entry Methode of entry - */ void CreateTown(lvl_entry entry) { dminx = 10; diff --git a/Source/town.h b/Source/town.h index 71f0b109c..d548d3c07 100644 --- a/Source/town.h +++ b/Source/town.h @@ -10,8 +10,20 @@ namespace devilution { +/** + * @brief Update the map to show the open hive + */ void TownOpenHive(); + +/** + * @brief Update the map to show the open grave + */ void TownOpenGrave(); + +/** + * @brief Initialize town level + * @param entry Method of entry + */ void CreateTown(lvl_entry entry); } // namespace devilution