refactor: move PlayerID declaration

This commit is contained in:
2021-09-19 18:46:39 +02:00
parent 8db50b7cb0
commit 3f53d32e44
2 changed files with 2 additions and 1 deletions

View File

@@ -30,7 +30,6 @@ enum class MobType : std::uint8_t {
Giant
};
typedef std::uint8_t PlayerID;
typedef std::uint32_t MobID;
typedef std::uint8_t MobLevel;
typedef std::vector<TowerType> TowerImmunities;

View File

@@ -12,5 +12,7 @@ enum class Direction : std::uint8_t {
NegativeY = 1 << 3,
};
typedef std::uint8_t PlayerID;
} // namespace game
} // namespace td