| 37 | command_result df_changeitem(color_ostream &out, vector <string> & parameters); |
| 38 | |
| 39 | DFhackCExport command_result plugin_init ( color_ostream &out, vector <PluginCommand> &commands) |
| 40 | { |
| 41 | commands.push_back(PluginCommand( |
| 42 | "changeitem", |
| 43 | "Change item attributes (material, quality).", |
| 44 | df_changeitem)); |
| 45 | |
| 46 | return CR_OK; |
| 47 | } |
| 48 | |
| 49 | DFhackCExport command_result plugin_shutdown ( color_ostream &out ) |
| 50 | { |
nothing calls this directly
no test coverage detected