refactor: moved TowerPtr declaration

This commit is contained in:
2021-09-19 18:37:59 +02:00
parent d6dd2ce4a9
commit 866ff30880
2 changed files with 2 additions and 2 deletions

View File

@@ -100,6 +100,8 @@ public: // conve
};
typedef std::shared_ptr<Tower> TowerPtr;
class TowerInfo {
private:
std::string m_Name, m_Description;

View File

@@ -111,8 +111,6 @@ typedef std::vector<MobPtr> MobList;
typedef std::array<Color, 2> SpawnColorPalette;
typedef std::shared_ptr<Tower> TowerPtr;
class World {
protected:
TowerTileColorPalette m_TowerPlacePalette;