| 148 | df::craft_material_class getCraftClass(); |
| 149 | |
| 150 | bool matches(const MaterialInfo& mat) const |
| 151 | { |
| 152 | if (!mat.isValid()) return true; |
| 153 | return (type == mat.type) && |
| 154 | (mat.index == -1 || index == mat.index); |
| 155 | } |
| 156 | |
| 157 | bool matches(const df::job_material_category& cat) const; |
| 158 | bool matches(const df::dfhack_material_category& cat) const; |
no test coverage detected