| 129 | } |
| 130 | } |
| 131 | DEFINE_VMETHOD_INTERPOSE(uint32_t,getImpassableOccupancy,()) |
| 132 | { |
| 133 | if(auto def = find_def()) |
| 134 | { |
| 135 | if(def->impassible_fix) |
| 136 | return tile_building_occ::Impassable; |
| 137 | } |
| 138 | return INTERPOSE_NEXT(getImpassableOccupancy)(); |
| 139 | } |
| 140 | |
| 141 | DEFINE_VMETHOD_INTERPOSE(void, getPowerInfo, (df::power_info *info)) |
| 142 | { |
nothing calls this directly
no test coverage detected