summaryrefslogtreecommitdiff
path: root/src/T2DLL/T2SettingDialog.h
blob: 8bf0fd5d2ea4b8064dac6f58f9a320b0a4436a81 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#pragma once
#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;
};