summaryrefslogtreecommitdiff
path: root/src/T2DLL/T2StewardDialog.h
blob: 2367091b9567184a9e934023e73964c12421f1ac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef T2DLL_T2STEWARDDIALOG_H
#define T2DLL_T2STEWARDDIALOG_H
#include "../common.h"
#include "T2Dialog.h"

class AFX_CLASS_EXPORT T2StewardDialog : public T2Dialog {
public:
	T2StewardDialog(T2TowerDoc* inDoc, HINSTANCE inModule, CString& inText, int inKind);
	virtual BOOL OnT2DialogCommand(WPARAM inWParam, LPARAM inLParam);
	static void MessageBox(const char* inText, const char* inTitle);
	static int MessageBoxYN(const char* inText, const char* inTitle);
};
#endif