building type, subtype, custom
| 15 | |
| 16 | // building type, subtype, custom |
| 17 | BuildingTypeKey::BuildingTypeKey(df::building_type type, int16_t subtype, int32_t custom) |
| 18 | : tuple(type, subtype, custom) { } |
| 19 | |
| 20 | static BuildingTypeKey deserialize(color_ostream &out, const std::string &serialized) { |
| 21 | vector<string> key_parts; |
nothing calls this directly
no test coverage detected