summaryrefslogtreecommitdiff
path: root/src/T2DLL/T2OptionPluginList.h
blob: 5a0182550a4ec2c06cabe6684146f9687ec5c2a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef T2DLL_T2OPTIONPLUGINLIST_H
#define T2DLL_T2OPTIONPLUGINLIST_H
#include "../common.h"
#include "LArray.h"

class AFX_CLASS_EXPORT T2OptionPluginList : private LArray {
public:
	T2OptionPluginList();
	virtual ~T2OptionPluginList();
	void Add(T2OptionPlugin* plugin);
	void OnIdle(T2TowerDoc* towerDoc);
	BOOL DispatchEvent(OPTIONEVENTTYPE eventType, T2TowerDoc* towerDoc, void* data);
};
#endif