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>
58 lines
1.5 KiB
C++
58 lines
1.5 KiB
C++
#if !defined(AFX_SHEETCHROUTFITSLOT_H__10C46816_407F_439A_BA18_BA0D4230A4C5__INCLUDED_)
|
|
#define AFX_SHEETCHROUTFITSLOT_H__10C46816_407F_439A_BA18_BA0D4230A4C5__INCLUDED_
|
|
|
|
#if _MSC_VER > 1000
|
|
#pragma once
|
|
#endif // _MSC_VER > 1000
|
|
// SheetChrOutfitSlot.h : header file
|
|
//
|
|
|
|
#include "PageOutfitSet.h"
|
|
#include "PageAttachmentSet.h"
|
|
|
|
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// CSheetChrOutfitSlot
|
|
|
|
class CSheetChrOutfitSlot : public CPropertySheet
|
|
{
|
|
DECLARE_DYNAMIC(CSheetChrOutfitSlot)
|
|
|
|
// Construction
|
|
public:
|
|
CSheetChrOutfitSlot(UINT nIDCaption, CWnd* pParentWnd = NULL, UINT iSelectPage = 0);
|
|
CSheetChrOutfitSlot(LPCTSTR pszCaption, CWnd* pParentWnd = NULL, UINT iSelectPage = 0);
|
|
|
|
// Attributes
|
|
public:
|
|
CPageOutfitSet m_PageOutfitSet;
|
|
CPageAttachmentSet m_PageAttachmentSet;
|
|
|
|
// Operations
|
|
public:
|
|
|
|
// Overrides
|
|
// ClassWizard generated virtual function overrides
|
|
//{{AFX_VIRTUAL(CSheetChrOutfitSlot)
|
|
//}}AFX_VIRTUAL
|
|
|
|
// Implementation
|
|
public:
|
|
virtual ~CSheetChrOutfitSlot();
|
|
|
|
// Generated message map functions
|
|
protected:
|
|
//{{AFX_MSG(CSheetChrOutfitSlot)
|
|
// NOTE - the ClassWizard will add and remove member functions here.
|
|
//}}AFX_MSG
|
|
DECLARE_MESSAGE_MAP()
|
|
};
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
//{{AFX_INSERT_LOCATION}}
|
|
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
|
|
|
|
#endif // !defined(AFX_SHEETCHROUTFITSLOT_H__10C46816_407F_439A_BA18_BA0D4230A4C5__INCLUDED_)
|