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:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user