blob: 709558fb8cf0e33189fcdeab547f9081ace15f32 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef T2DLL_T2OUTOBJINFODIALOG_H
#define T2DLL_T2OUTOBJINFODIALOG_H
#include "../common.h"
#include "T2InfoDialog.h"
class AFX_CLASS_EXPORT T2OutObjInfoDialog : public T2InfoDialog {
public:
T2OutObjInfoDialog(T2OutObj* inOutObj);
virtual ~T2OutObjInfoDialog();
protected:
T2OutObj *mOutObj;
int mUnk100;
};
#endif
|