summaryrefslogtreecommitdiff
path: root/src/T2DLL/T2TreasurePane.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/T2DLL/T2TreasurePane.h')
-rw-r--r--src/T2DLL/T2TreasurePane.h18
1 files changed, 12 insertions, 6 deletions
diff --git a/src/T2DLL/T2TreasurePane.h b/src/T2DLL/T2TreasurePane.h
index 327a3e2..1101c82 100644
--- a/src/T2DLL/T2TreasurePane.h
+++ b/src/T2DLL/T2TreasurePane.h
@@ -1,14 +1,20 @@
#pragma once
#include "common.h"
+#include "T2DlgItem.h"
-class T2TreasurePane {
+class AFX_EXT_CLASS T2TreasurePane : public T2DlgItem {
public:
- T2TreasurePane(T2TowerDoc*, T2ImageObj*, CPalette*);
+ T2TreasurePane(T2TowerDoc* inDoc, T2ImageObj* inImageObj, CPalette* inPalette);
virtual ~T2TreasurePane();
- void SetAnimPics(T2TowerDoc*, int, int);
- virtual void DrawSelf(CDC*);
virtual void SpendTime();
+ virtual void DrawSelf(CDC* pDC);
+ void SetAnimPics(T2TowerDoc* inDoc, int inID1, int inID2);
+
protected:
- virtual int OnT2DlgItemEraseBkgnd(CDC*);
- virtual int OnCreate(CREATESTRUCTA*);
+ virtual BOOL OnT2DlgItemEraseBkgnd(CDC* pDC);
+ virtual int OnCreate(CREATESTRUCT* inCreateStruct);
+
+ T2BitImage *mImages[2];
+ int mCurrentImage;
+ DWORD mLastChangeAt;
};