blob: 719fd4380eff5b95a575ff826f7b52b0d55c4a10 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
#pragma once
#include "common.h"
class DbgEquipInfo : public CDialog {
DECLARE_MESSAGE_MAP()
public:
DbgEquipInfo(CWnd *pParentWnd);
void SetEquip(T2Equip *inEquip);
void SetDocument(T2TowerDoc *inDoc);
void SetTowerMainView(T2TowerMainView *inView);
virtual BOOL OnInitDialog();
protected:
afx_msg void OnListClick(NMHDR *inHdr, LRESULT *outResult);
virtual void DoDataExchange(CDataExchange *pDX);
CButton mButton;
CListCtrl mList1;
CStatic mStatic1;
CStatic mStatic2;
CListCtrl mList2;
T2Equip *mEquip;
T2TowerDoc *mDocument;
T2TowerMainView *mTowerMainView;
};
|