Files
Client/Server/AdminTool/AdminToolClient/GuildGoldPage.cpp
LGram16 dd97ddec92 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>
2025-11-29 20:17:20 +09:00

39 lines
617 B
C++

// GuildGoldPage.cpp : 구현 파일입니다.
//
#include "stdafx.h"
#include "AdminToolClient.h"
#include "GuildGoldPage.h"
// CGuildGoldPage 대화 상자입니다.
IMPLEMENT_DYNAMIC(CGuildGoldPage, CPropertyPage)
CGuildGoldPage::CGuildGoldPage()
: CPropertyPage(CGuildGoldPage::IDD)
{
}
CGuildGoldPage::~CGuildGoldPage()
{
}
void CGuildGoldPage::DoDataExchange(CDataExchange* pDX)
{
CPropertyPage::DoDataExchange(pDX);
}
BEGIN_MESSAGE_MAP(CGuildGoldPage, CPropertyPage)
END_MESSAGE_MAP()
// CGuildGoldPage 메시지 처리기입니다.
BOOL CGuildGoldPage::OnInitDialog()
{
CPropertyPage::OnInitDialog();
return TRUE;
}