aboutsummaryrefslogtreecommitdiff
path: root/mayaPlug/shaveCutCtxCmd.h
diff options
context:
space:
mode:
authorBen Marsh <[email protected]>2019-10-22 09:07:59 -0400
committerBen Marsh <[email protected]>2019-10-22 09:07:59 -0400
commitbd0027e737c6512397f841c22786274ed74b927f (patch)
treef7ffbdb8f3741bb7f24635616cc189cba5cb865c /mayaPlug/shaveCutCtxCmd.h
downloadshave-and-a-haircut-bd0027e737c6512397f841c22786274ed74b927f.tar.xz
shave-and-a-haircut-bd0027e737c6512397f841c22786274ed74b927f.zip
Adding Shave-and-a-Haircut 9.6
Diffstat (limited to 'mayaPlug/shaveCutCtxCmd.h')
-rw-r--r--mayaPlug/shaveCutCtxCmd.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/mayaPlug/shaveCutCtxCmd.h b/mayaPlug/shaveCutCtxCmd.h
new file mode 100644
index 0000000..5af106f
--- /dev/null
+++ b/mayaPlug/shaveCutCtxCmd.h
@@ -0,0 +1,23 @@
+#ifndef shaveCutCtxCmd_h
+#define shaveCutCtxCmd_h
+// Shave and a Haircut
+// (c) 2019 Epic Games
+// US Patent 6720962
+
+#include <maya/MPxContextCommand.h>
+
+#include "shaveCursorCtxCmd.h"
+
+class shaveCutCtxCmd : public shaveCursorCtxCmd
+{
+public:
+ shaveCutCtxCmd();
+ virtual ~shaveCutCtxCmd();
+
+ static void* createCmd() { return new shaveCutCtxCmd; }
+ virtual shaveCursorCtx* createContext();
+
+ static const MString commandName;
+};
+
+#endif