summaryrefslogtreecommitdiff
path: root/src/T2DLL/T2TowerVision.h
blob: 013443d215378f63845376a7f8979d28d4fc1201 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef T2DLL_T2TOWERVISION_H
#define T2DLL_T2TOWERVISION_H
#include "../common.h"
#include "T2EventItem.h"

class AFX_CLASS_EXPORT T2TowerVision : public T2EventItem {
public:
	T2TowerVision(T2TowerEvent* inTowerEvent, int inSubID, int inLevelBit, BOOL inExclusive, int inCycleDay, int inBeginTime, int inEndTime, T2OutObj *inOutObj);
	virtual ~T2TowerVision();
	virtual DWORD GetID() { return 'TVEv'; }
	virtual int Exec(T2TowerDoc* inDoc);
	virtual void StopEvent(T2TowerDoc* inDoc);
	BOOL PrepareMovie(T2TowerDoc* inDoc);

protected:
	T2OutObj *mOutObj;
	int _34;
	int _38;
};
#endif