/********************************************************************
*
* File: gfISimpleCutterComponent.h
*
* Purpose: Simple cutters - not jigsaw
*
*********************************************************************/
#ifndef gfISimpleCutterComponenthdr
#define gfISimpleCutterComponenthdr
#include "gfICutterComponent.h"
class gfISimpleCutterComponent : public gfICutterComponent
{
public:
static const fsCUniqueId mTypeId;
protected:
gfISimpleCutterComponent(fsCEntity* pParent);
virtual ~gfISimpleCutterComponent();<--- Destructor in derived class
void simpleCutterSetup(const fsCVariableTable& pStyle, const fsStr& pLevelName);
std::shared_ptr<fsCBrush> mStencilTexture;
private:
void stencilLoad(const fsCVariableTable& pStyle);
};
#endif