Restructure repository to include all source folders
Move git root from Client/ to src/ to track all source code: - Client: Game client source (moved to Client/Client/) - Server: Game server source - GameTools: Development tools - CryptoSource: Encryption utilities - database: Database scripts - Script: Game scripts - rylCoder_16.02.2008_src: Legacy coder tools - GMFont, Game: Additional resources 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
47
Server/AdminTool/AdminToolClient/CharSheetView.h
Normal file
47
Server/AdminTool/AdminToolClient/CharSheetView.h
Normal file
@@ -0,0 +1,47 @@
|
||||
#pragma once
|
||||
|
||||
#include "CharPropertySheet.h"
|
||||
|
||||
class CModifyCharacter;
|
||||
|
||||
/*!
|
||||
\class CCharSheetView
|
||||
ij<><C4B3><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>ϰ<EFBFBD> <20>ִ<EFBFBD> <20><>Ʈ
|
||||
*/
|
||||
class CCharSheetView : public CFormView
|
||||
{
|
||||
DECLARE_DYNCREATE(CCharSheetView)
|
||||
|
||||
protected:
|
||||
CCharSheetView(); // <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>Ǵ<EFBFBD> protected <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Դϴ<D4B4>.
|
||||
virtual ~CCharSheetView();
|
||||
|
||||
public:
|
||||
enum { IDD = IDD_CHARSHEETVIEW };
|
||||
#ifdef _DEBUG
|
||||
virtual void AssertValid() const;
|
||||
virtual void Dump(CDumpContext& dc) const;
|
||||
#endif
|
||||
|
||||
protected:
|
||||
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV <20><><EFBFBD><EFBFBD><EFBFBD>Դϴ<D4B4>.
|
||||
afx_msg HBRUSH OnCtlColor(CDC* pDC, CWnd* pWnd, UINT nCtlColor);
|
||||
|
||||
DECLARE_MESSAGE_MAP()
|
||||
|
||||
virtual void OnInitialUpdate();
|
||||
virtual void PostNcDestroy();
|
||||
|
||||
private:
|
||||
CCharPropertySheet* m_pCharPropertySheet;
|
||||
CModifyCharacter* m_lpModifyCharInfo;
|
||||
unsigned int m_dwDocKey;
|
||||
|
||||
afx_msg void OnBnClickedCharupdateBtn();
|
||||
afx_msg void OnBnClickedOverlapitemlistBtn();
|
||||
|
||||
public:
|
||||
CString m_strSheetInfo;
|
||||
|
||||
bool SetCharSheetInfo(unsigned int dwDocKey, CModifyCharacter* lpCharacter);
|
||||
};
|
||||
Reference in New Issue
Block a user