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>
32 lines
518 B
C++
32 lines
518 B
C++
// ChecksumPage.cpp : 구현 파일입니다.
|
|
//
|
|
|
|
#include "stdafx.h"
|
|
#include "PatchMaker.h"
|
|
#include "ChecksumPage.h"
|
|
|
|
|
|
// CChecksumPage 대화 상자입니다.
|
|
|
|
IMPLEMENT_DYNAMIC(CChecksumPage, CPropertyPage)
|
|
CChecksumPage::CChecksumPage()
|
|
: CPropertyPage(CChecksumPage::IDD)
|
|
{
|
|
}
|
|
|
|
CChecksumPage::~CChecksumPage()
|
|
{
|
|
}
|
|
|
|
void CChecksumPage::DoDataExchange(CDataExchange* pDX)
|
|
{
|
|
CPropertyPage::DoDataExchange(pDX);
|
|
}
|
|
|
|
|
|
BEGIN_MESSAGE_MAP(CChecksumPage, CPropertyPage)
|
|
END_MESSAGE_MAP()
|
|
|
|
|
|
// CChecksumPage 메시지 처리기입니다.
|