| 52 | command_result cmd_3dveins(color_ostream &out, std::vector <std::string> & parameters); |
| 53 | |
| 54 | DFhackCExport command_result plugin_init ( color_ostream &out, std::vector <PluginCommand> &commands) |
| 55 | { |
| 56 | commands.push_back(PluginCommand( |
| 57 | "3dveins", |
| 58 | "Rewrites the veins to make them extend in 3D space.", |
| 59 | cmd_3dveins)); |
| 60 | return CR_OK; |
| 61 | } |
| 62 | |
| 63 | DFhackCExport command_result plugin_shutdown ( color_ostream &out ) |
| 64 | { |
nothing calls this directly
no test coverage detected