summaryrefslogtreecommitdiff
path: root/src/T2DLL/T2SettingDialog.h
blob: 1aafa9bdd9cb58306132c7f6d8a02cb0674d0575 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef T2DLL_T2SETTINGDIALOG_H
#define T2DLL_T2SETTINGDIALOG_H
#include "../common.h"
#include "T2Dialog.h"

class AFX_CLASS_EXPORT T2SettingDialog : public T2Dialog {
public:
	T2SettingDialog(T2TowerDoc* inDoc);
	virtual ~T2SettingDialog();
	virtual BOOL OnT2DialogCommand(WPARAM inWParam, LPARAM inLParam);

protected:
	T2TowerDoc *mDocument;
	SpeedDlg *mSpeedDlg;
	SoundDlg *mSoundDlg;
	WalkerDlg *mWalkerDlg;
	T2ImageObj *mImageObj;
	T2BitImage *mBitImage;
};
#endif