#ifndef _shaveExportGameCmd_h_ #define _shaveExportGameCmd_h_ // Shave and a Haircut // (c) 2019 Epic Games // US Patent 6720962 #include #include #include #include #include class shaveExportGame : public MPxCommand { public: static const MString cmd; // static const char* filename_long; // static const char* filename_short; static const char* nodename_long; static const char* nodename_short; shaveExportGame(){} virtual ~shaveExportGame(){} MStatus doIt( const MArgList& args ); bool isUndoable() const {return false;} static void* creator() {return new shaveExportGame;} static MSyntax newSyntax(); protected: bool findNodeByName(const MString& name, MObject& thenode) const; }; #endif