| 261 | command_result prospector (color_ostream &out, vector <string> & parameters); |
| 262 | |
| 263 | DFhackCExport command_result plugin_init ( color_ostream &out, std::vector <PluginCommand> &commands) |
| 264 | { |
| 265 | commands.push_back(PluginCommand( |
| 266 | "prospect", |
| 267 | "Show raw resources available on the map.", |
| 268 | prospector)); |
| 269 | return CR_OK; |
| 270 | } |
| 271 | |
| 272 | DFhackCExport command_result plugin_shutdown ( color_ostream &out ) |
| 273 | { |
nothing calls this directly
no test coverage detected