1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-11-25 22:42:04 +02:00

Converted (almost) all namespace enum's to enum classes

This commit is contained in:
Ivan Savenko
2023-08-19 22:35:44 +03:00
parent 62cd8b12d4
commit 0240ee886d
34 changed files with 124 additions and 144 deletions

View File

@@ -54,12 +54,12 @@ bool TileInfo::isUsed() const
{
return occupied == ETileType::USED;
}
void TileInfo::setOccupied(ETileType::ETileType value)
void TileInfo::setOccupied(ETileType value)
{
occupied = value;
}
ETileType::ETileType TileInfo::getTileType() const
ETileType TileInfo::getTileType() const
{
return occupied;
}