Furnaces need architecture, and this is a workshop only because furnaces cannot connect to machines.
| 536 | // Furnaces need architecture, and this is a workshop |
| 537 | // only because furnaces cannot connect to machines. |
| 538 | DEFINE_VMETHOD_INTERPOSE(bool, needsDesign, ()) |
| 539 | { |
| 540 | if (get_steam_engine()) |
| 541 | return true; |
| 542 | |
| 543 | return INTERPOSE_NEXT(needsDesign)(); |
| 544 | } |
| 545 | |
| 546 | // Machine interface |
| 547 | DEFINE_VMETHOD_INTERPOSE(void, getPowerInfo, (df::power_info *info)) |
nothing calls this directly
no test coverage detected