Browse Source

Move documentation from implementations to declarations #2735

pull/2760/head
Siddharth singh chouhan 5 years ago committed by GitHub
parent
commit
03eb86b118
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 10
      Source/town.cpp
  2. 12
      Source/town.h

10
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;

12
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

Loading…
Cancel
Save