summaryrefslogtreecommitdiff
path: root/src/T2DLL/T2DrawableObject.h
blob: 42bdca3ed7fe5edd49629379ef832743f1ccde4a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#pragma once
#include "common.h"
#include "T2Object.h"

class AFX_CLASS_EXPORT T2DrawableObject : public T2Object {
public:
	T2DrawableObject();
	virtual ~T2DrawableObject();
	virtual void Draw(T2TowerDoc*, const RECT&);
	virtual T2InfoDialog* ShowInfoDialog(T2TowerDoc*);
	virtual void DrawHitMask(T2TowerDoc*);
protected:
	virtual void DrawSelf(T2TowerDoc*, const RECT&);
	virtual T2InfoDialog* ConstructInfoDialog();
};