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>
This commit is contained in:
2025-11-29 20:17:20 +09:00
parent 5d3cd64a25
commit dd97ddec92
11602 changed files with 1446576 additions and 0 deletions

View File

@@ -0,0 +1,81 @@
// UserInfoFrm.cpp : CUserInfoFrame Ŭ<><C5AC><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>
//
#include "stdafx.h"
#include "AdminToolClient.h"
#include "AdminToolClientView.h"
#include "UserCharTreeView.h"
#include "CharSheetView.h"
#include "UserInfoFrm.h"
#include "GlobalFunctions.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#endif
// CUserInfoFrame
IMPLEMENT_DYNCREATE(CUserInfoFrame, CMDIChildWnd)
BEGIN_MESSAGE_MAP(CUserInfoFrame, CMDIChildWnd)
END_MESSAGE_MAP()
// CUserInfoFrame <20><><EFBFBD><EFBFBD>/<2F>Ҹ<EFBFBD>
CUserInfoFrame::CUserInfoFrame()
{
// TODO: <20><><EFBFBD><20><><EFBFBD><EFBFBD> <20>ʱ<EFBFBD>ȭ <20>ڵ带 <20>߰<EFBFBD><DFB0>մϴ<D5B4>.
}
CUserInfoFrame::~CUserInfoFrame()
{
}
BOOL CUserInfoFrame::PreCreateWindow(CREATESTRUCT& cs)
{
// TODO: CREATESTRUCT cs<63><73> <20><><EFBFBD><EFBFBD><EFBFBD>Ͽ<EFBFBD> <20><><EFBFBD><EFBFBD><E2BFA1> Window Ŭ<><C5AC><EFBFBD><EFBFBD> <20>Ǵ<EFBFBD> <20><>Ÿ<EFBFBD><C5B8><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>մϴ<D5B4>.
if(!CMDIChildWnd::PreCreateWindow(cs))
return FALSE;
cs.cx = 1007;
cs.cy = 555;
cs.style |= WS_MAXIMIZE;
return CMDIChildWnd::PreCreateWindow(cs);
}
// CUserInfoFrame <20><><EFBFBD><EFBFBD>
#ifdef _DEBUG
void CUserInfoFrame::AssertValid() const
{
CMDIChildWnd::AssertValid();
}
void CUserInfoFrame::Dump(CDumpContext& dc) const
{
CMDIChildWnd::Dump(dc);
}
#endif //_DEBUG
// CUserInfoFrame <20>޽<EFBFBD><DEBD><EFBFBD> ó<><C3B3><EFBFBD><EFBFBD>
BOOL CUserInfoFrame::OnCreateClient(LPCREATESTRUCT lpcs, CCreateContext* pContext)
{
if (!m_wndSplitter.CreateStatic(this, 1, 2))
{
CString strTxt = GetLocalString("MSG_0130");
return FALSE;
}
m_wndSplitter.CreateView(0, 0, RUNTIME_CLASS(CUserCharTreeView), CSize(225, 3095), pContext);
m_wndSplitter.CreateView(0, 1, RUNTIME_CLASS(CCharSheetView), CSize(900, 3095), pContext);
return TRUE;
}