building type, subtype, custom
| 11 | |
| 12 | // building type, subtype, custom |
| 13 | struct BuildingTypeKey : public std::tuple<df::building_type, int16_t, int32_t> { |
| 14 | BuildingTypeKey(df::building_type type, int16_t subtype, int32_t custom); |
| 15 | BuildingTypeKey(DFHack::color_ostream &out, const std::string & serialized); |
| 16 | |
| 17 | std::string serialize() const; |
| 18 | }; |
| 19 | |
| 20 | template <> |
| 21 | struct fmt::formatter<BuildingTypeKey> : fmt::formatter<std::string_view> |
no outgoing calls
no test coverage detected