blob: 652ff32600b8c812458e8e9f39afc671b6c07c1e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#ifndef T2DLL_T2DRAWABLEOBJECT_H
#define T2DLL_T2DRAWABLEOBJECT_H
#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();
};
#endif
|