blob: 990ffd7f2432d30be6ab5cac7bfbd7ec8a623141 (
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
#include "precompiled/PCH.h"
#ifndef TE_COMMANDS_H
#define TE_COMMANDS_H
class TEStateChangeCommand : public MPxCommand
{
public:
TEStateChangeCommand() {};
~TEStateChangeCommand() {};
static void* creator();
virtual MStatus doIt( const MArgList& args );
static const char* stringId;
};
class TEGetSelectedVertexPosition : public MPxCommand
{
public:
TEGetSelectedVertexPosition() {};
~TEGetSelectedVertexPosition() {};
static void* creator();
virtual MStatus doIt( const MArgList& args );
static const char* stringId;
};
class TEGetSelectedVertexIndex : public MPxCommand
{
public:
TEGetSelectedVertexIndex() {};
~TEGetSelectedVertexIndex() {};
static void* creator();
virtual MStatus doIt( const MArgList& args );
static const char* stringId;
};
#endif
|