Game client codebase including: - CharacterActionControl: Character and creature management - GlobalScript: Network, items, skills, quests, utilities - RYLClient: Main client application with GUI and event handlers - Engine: 3D rendering engine (RYLGL) - MemoryManager: Custom memory allocation - Library: Third-party dependencies (DirectX, boost, etc.) - Tools: Development utilities 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
22 lines
372 B
C++
22 lines
372 B
C++
#pragma once
|
|
|
|
|
|
// CChecksumPage 대화 상자입니다.
|
|
|
|
class CChecksumPage : public CPropertyPage
|
|
{
|
|
DECLARE_DYNAMIC(CChecksumPage)
|
|
|
|
public:
|
|
CChecksumPage();
|
|
virtual ~CChecksumPage();
|
|
|
|
// 대화 상자 데이터입니다.
|
|
enum { IDD = IDD_CHECKSUM };
|
|
|
|
protected:
|
|
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV 지원입니다.
|
|
|
|
DECLARE_MESSAGE_MAP()
|
|
};
|