| 20 | namespace OpenRCT2 |
| 21 | { |
| 22 | void TerrainEdgeObject::Load() |
| 23 | { |
| 24 | GetStringTable().Sort(); |
| 25 | NameStringId = LanguageAllocateObjectString(GetName()); |
| 26 | IconImageId = LoadImages(); |
| 27 | |
| 28 | // First image is icon followed by edge images |
| 29 | BaseImageId = IconImageId + 1; |
| 30 | } |
| 31 | |
| 32 | void TerrainEdgeObject::Unload() |
| 33 | { |
nothing calls this directly
no test coverage detected