| 506 | } |
| 507 | |
| 508 | DFhackCExport command_result plugin_init ( color_ostream &out, std::vector <PluginCommand> &commands) |
| 509 | { |
| 510 | eventHandlers = compileEventHandlerArray(); |
| 511 | if (Core::getInstance().isWorldLoaded()) |
| 512 | plugin_onstatechange(out, SC_WORLD_LOADED); |
| 513 | enable_hooks(true); |
| 514 | return CR_OK; |
| 515 | } |
| 516 | |
| 517 | DFhackCExport command_result plugin_shutdown ( color_ostream &out ) |
| 518 | { |
nothing calls this directly
no test coverage detected