#ifndef T2DLL_SPEEDDLG_H #define T2DLL_SPEEDDLG_H #include "../common.h" #include "T2Dialog.h" class SpeedDlg : public T2Dialog { public: SpeedDlg(); virtual ~SpeedDlg(); void Setup(T2TowerDoc *inDoc, HINSTANCE inInstance, CWnd *inParentWnd, const POINT &inPt, T2ImageObj *inImageObj); void Revert(); void Save(); protected: virtual BOOL OnT2DialogCommand(WPARAM inWParam, LPARAM inLParam); virtual void OnT2Create(); T2TowerDoc *mDocument; int mCurrentSpeed; int mCurrentIndex; }; #endif