summaryrefslogtreecommitdiff
path: root/src/T2DLL/T2TreasurePane.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/T2DLL/T2TreasurePane.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/T2DLL/T2TreasurePane.h b/src/T2DLL/T2TreasurePane.h
new file mode 100644
index 0000000..327a3e2
--- /dev/null
+++ b/src/T2DLL/T2TreasurePane.h
@@ -0,0 +1,14 @@
+#pragma once
+#include "common.h"
+
+class T2TreasurePane {
+public:
+ T2TreasurePane(T2TowerDoc*, T2ImageObj*, CPalette*);
+ virtual ~T2TreasurePane();
+ void SetAnimPics(T2TowerDoc*, int, int);
+ virtual void DrawSelf(CDC*);
+ virtual void SpendTime();
+protected:
+ virtual int OnT2DlgItemEraseBkgnd(CDC*);
+ virtual int OnCreate(CREATESTRUCTA*);
+};