(svn r23462) -Codechange: use AirportTileTableIterator in a few more places to make the code easier to read

This commit is contained in:
yexo
2011-12-09 19:53:42 +00:00
parent c9be5d50da
commit 16eb11e988
2 changed files with 17 additions and 16 deletions

View File

@@ -56,6 +56,12 @@ public:
return *this;
}
/** Get the StationGfx for the current tile. */
StationGfx GetStationGfx() const
{
return this->att->gfx;
}
virtual AirportTileTableIterator *Clone() const
{
return new AirportTileTableIterator(*this);