summaryrefslogtreecommitdiff
path: root/src/T2DLL/T2OptionPlugin.h
blob: 20fb96523a06018fa7d206664261153aafba8744 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#pragma once
#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;
};