| 55 | namespace DFHack |
| 56 | { |
| 57 | struct t_matpair |
| 58 | { |
| 59 | int16_t mat_type; |
| 60 | int32_t mat_index; |
| 61 | |
| 62 | t_matpair(int16_t type = -1, int32_t index = -1) |
| 63 | : mat_type(type), mat_index(index) |
| 64 | {} |
| 65 | }; |
| 66 | |
| 67 | struct DFHACK_EXPORT MaterialInfo |
| 68 | { |
no outgoing calls
no test coverage detected