blob: 5d33dbc2dce4cef655909f516b0aac06133721d3 (
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
|
#ifndef shaveWriteHairCmd_h
#define shaveWriteHairCmd_h
// Shave and a Haircut
// (c) 2019 Epic Games
// US Patent 6720962
#include <maya/MPxCommand.h>
#include <maya/MString.h>
#include <maya/MSyntax.h>
class shaveWriteHairCmd : public MPxCommand
{
public:
static void* createCmd() { return new shaveWriteHairCmd; }
static MSyntax createSyntax();
virtual MStatus doIt(const MArgList& args);
virtual bool isUndoable() const { return false; }
static const MString commandName;
};
#endif
|