#ifndef T2DLL_T2OPTIONPLUGIN_H #define T2DLL_T2OPTIONPLUGIN_H #include "../common.h" #include "T2PluginSpecifier.h" class AFX_CLASS_EXPORT T2OptionPlugin { // a proper definition for this will have to wait // as nothing seems to actually use this subsystem... protected: T2OptionPlugin(); public: virtual ~T2OptionPlugin(); virtual CString GetName() const { return "OPTION"; } virtual BOOL OnEvent(OPTIONEVENTTYPE eventType, T2TowerDoc *towerDoc, void *data) { return true; } protected: T2PluginSpecifier mSpecifier; int m38; }; #endif