blob: 38347c21cbfaee484f32c18712dcad2556aa8c11 (
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 SoundDlg : public T2Dialog {
public:
SoundDlg();
virtual ~SoundDlg();
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;
};
|