From 6a8812c46840dfd439096b1b3b9bf7806e155b58 Mon Sep 17 00:00:00 2001 From: Siddharth singh chouhan <63919605+Sid672@users.noreply.github.com> Date: Wed, 1 Sep 2021 21:58:56 +0530 Subject: [PATCH] Move documentation from themes.cpp to themes.h --- Source/themes.cpp | 6 ------ Source/themes.h | 8 ++++++++ 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/Source/themes.cpp b/Source/themes.cpp index 9693426de..44bf0cfb8 100644 --- a/Source/themes.cpp +++ b/Source/themes.cpp @@ -445,9 +445,6 @@ void InitThemes() } } -/** - * @brief HoldThemeRooms marks theme rooms as populated. - */ void HoldThemeRooms() { if (currlevel == 16) @@ -964,9 +961,6 @@ void UpdateL4Trans() } } -/** - * CreateThemeRooms adds thematic elements to rooms. - */ void CreateThemeRooms() { if (currlevel == 16) { diff --git a/Source/themes.h b/Source/themes.h index 735dc5e45..5765afe9f 100644 --- a/Source/themes.h +++ b/Source/themes.h @@ -24,7 +24,15 @@ extern int zharlib; extern ThemeStruct themes[MAXTHEMES]; void InitThemes(); + +/** + * @brief HoldThemeRooms marks theme rooms as populated. + */ void HoldThemeRooms(); + +/** + * CreateThemeRooms adds thematic elements to rooms. + */ void CreateThemeRooms(); } // namespace devilution