diff options
Diffstat (limited to 'tools/trackeditor/code/commands/export.h')
-rw-r--r-- | tools/trackeditor/code/commands/export.h | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/tools/trackeditor/code/commands/export.h b/tools/trackeditor/code/commands/export.h new file mode 100644 index 0000000..f3c031c --- /dev/null +++ b/tools/trackeditor/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 + }; + + ExportCommand(); + ~ExportCommand(); + + static void* creator(); + virtual MStatus doIt( const MArgList& args ); + + static const char* stringId; + +private: + static bool sRegisteredChunks; +}; +#endif
\ No newline at end of file |