diff --git a/plugins/skeleton/skeletonShort.cpp b/plugins/skeleton/skeletonShort.cpp new file mode 100644 index 000000000..ebca0776e --- /dev/null +++ b/plugins/skeleton/skeletonShort.cpp @@ -0,0 +1,40 @@ +#include "Console.h" +#include "Core.h" +#include "DataDefs.h" +#include "Export.h" +#include "PluginManager.h" + +//#include "df/world.h" + +using namespace DFHack; + +command_result skeleton2 (color_ostream &out, std::vector & parameters); + +DFHACK_PLUGIN("skeleton2"); + +DFhackCExport command_result plugin_init ( color_ostream &out, std::vector &commands) +{ + commands.push_back(PluginCommand( + "skeleton2", + "shortHelpString", + skeleton2, + false, //allow non-interactive use + "longHelpString" + )); + return CR_OK; +} + +DFhackCExport command_result plugin_shutdown ( color_ostream &out ) +{ + return CR_OK; +} + +command_result skeleton2 (color_ostream &out, std::vector & parameters) +{ + if (!parameters.empty()) + return CR_WRONG_USAGE; + CoreSuspender suspend; + out.print("blah"); + return CR_OK; +} +