| 270 | } |
| 271 | |
| 272 | DFhackCExport command_result plugin_init ( color_ostream &out, std::vector <PluginCommand> &commands) |
| 273 | { |
| 274 | commands.push_back(PluginCommand("changevein", |
| 275 | "Change the material of a mineral inclusion.", |
| 276 | df_changevein)); |
| 277 | return CR_OK; |
| 278 | } |
| 279 | |
| 280 | DFhackCExport command_result plugin_shutdown ( color_ostream &out ) |
| 281 | { |
nothing calls this directly
no test coverage detected