| 90 | |
| 91 | |
| 92 | std::string Module::getPatchStorageDirectory() { |
| 93 | if (id < 0) |
| 94 | throw Exception("getPatchStorageDirectory() cannot be called unless Module belongs to Engine and thus has a valid ID"); |
| 95 | return system::join(APP->patch->autosavePath, "modules", std::to_string(id)); |
| 96 | } |
| 97 | |
| 98 | |
| 99 | void Module::processBypass(const ProcessArgs& args) { |
no test coverage detected