From 5e61c1280c15ab9969b94cd360cafd4a11b2dd30 Mon Sep 17 00:00:00 2001 From: Ash Wolf Date: Wed, 5 Jul 2023 19:04:06 +0100 Subject: matched T2.exe --- src/DbgEquipInfo.h | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) (limited to 'src/DbgEquipInfo.h') diff --git a/src/DbgEquipInfo.h b/src/DbgEquipInfo.h index fcaf1ff..719fd43 100644 --- a/src/DbgEquipInfo.h +++ b/src/DbgEquipInfo.h @@ -1,3 +1,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; +}; -- cgit v1.2.3