diff options
Diffstat (limited to '')
-rw-r--r-- | src/T2DLL/T2SilhouettePane.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/T2DLL/T2SilhouettePane.h b/src/T2DLL/T2SilhouettePane.h new file mode 100644 index 0000000..4e2ab4a --- /dev/null +++ b/src/T2DLL/T2SilhouettePane.h @@ -0,0 +1,16 @@ +#pragma once +#include "common.h" + +class T2SilhouettePane { +public: + int GetSilhouetteType() const; + void SetCustomColor(const int&); + T2SilhouettePane(T2TowerDoc*, T2ImageObj*, CPalette*); + virtual ~T2SilhouettePane(); +protected: + virtual void DrawSelf(CDC*); + virtual int OnT2DlgItemEraseBkgnd(CDC*); + virtual int OnCreate(CREATESTRUCTA*); +public: + void SetPeople(T2People*); +}; |