Initial commit: ROW Client source code

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>
This commit is contained in:
2025-11-29 16:24:34 +09:00
commit e067522598
5135 changed files with 1745744 additions and 0 deletions

View File

@@ -0,0 +1,46 @@
#pragma once
#include "afxwin.h"
// CSettingPatchInfo <20><>ȭ <20><><EFBFBD><EFBFBD><EFBFBD>Դϴ<D4B4>.
class CSettingPatchInfo : public CDialog
{
DECLARE_DYNAMIC(CSettingPatchInfo)
public:
CSettingPatchInfo(CWnd* pParent = NULL); // ǥ<><C7A5> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Դϴ<D4B4>.
virtual ~CSettingPatchInfo();
// <20><>ȭ <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Դϴ<D4B4>.
enum { IDD = IDD_PATCH_INFO };
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV <20><><EFBFBD><EFBFBD><EFBFBD>Դϴ<D4B4>.
DECLARE_MESSAGE_MAP()
public:
bool CheckPatchInfo(); // <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>, <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20>¾<EFBFBD> <20><><EFBFBD><EFBFBD> <20≯<EFBFBD> <20><><EFBFBD><EFBFBD> <20><>ȿ<EFBFBD>Ѱ<EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>
const CString& GetSetupFileName() const { return m_szSetupFileName; }
const CString& GetSetupName() const { return m_szSetupName; }
LPCTSTR GetExtension() const { return _T(".ini"); }
DWORD GetPatchVersion() const { return m_dwPatchVersion; }
bool IsSelectedNewFile() const { return m_bSelectedNewFile; }
virtual BOOL OnInitDialog();
virtual void OnOK();
private:
CComboBox m_cbSettingOptFile;
CString m_szSetupFileName;
CString m_szSetupName;
DWORD m_dwPatchVersion;
bool m_bSelectedNewFile;
afx_msg void OnCbnSelchangeCbSelOption();
};