#pragma once #include "common.h" #include "T2PluginSpecifier.h" class AFX_EXT_CLASS T2OptionPlugin { // a proper definition for this will have to wait // as nothing seems to actually use this subsystem... 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; };