summaryrefslogtreecommitdiffstats
path: root/tools/worldbuilder/code/commands/export.h
blob: 3ae78dc82fc17a9c35e6fbc50882c41eab6ce18b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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