diff options
Diffstat (limited to 'tools/worldbuilder/code/commands/export.h')
-rw-r--r-- | tools/worldbuilder/code/commands/export.h | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/tools/worldbuilder/code/commands/export.h b/tools/worldbuilder/code/commands/export.h new file mode 100644 index 0000000..3ae78dc --- /dev/null +++ b/tools/worldbuilder/code/commands/export.h @@ -0,0 +1,26 @@ +#include "precompiled/PCH.h" + +#ifndef EXPORT_COMMAND_H +#define EXPORT_COMMAND_H + +class ExportCommand : MPxCommand +{ +public: + enum ExportArg + { + SELECTED, + ALL + }; + + static void* creator(); + virtual MStatus doIt( const MArgList& args ); + + static const char* stringId; + +private: + ExportCommand(); + ~ExportCommand(); + + static bool sRegisteredChunks; +}; +#endif
\ No newline at end of file |