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:
29
Tools/PatchMaker/LogEdit.h
Normal file
29
Tools/PatchMaker/LogEdit.h
Normal file
@@ -0,0 +1,29 @@
|
||||
#pragma once
|
||||
|
||||
|
||||
// CLogEdit
|
||||
|
||||
class CLogEdit : public CEdit
|
||||
{
|
||||
DECLARE_DYNAMIC(CLogEdit)
|
||||
|
||||
public:
|
||||
CLogEdit();
|
||||
virtual ~CLogEdit();
|
||||
|
||||
protected:
|
||||
DECLARE_MESSAGE_MAP()
|
||||
|
||||
public:
|
||||
|
||||
void AddLine(LPCTSTR szLine, int nIndex = -1, bool bNewLine = true);
|
||||
void Clear() { SetWindowText(""); }
|
||||
|
||||
afx_msg void OnChar(UINT nChar, UINT nRepCnt, UINT nFlags);
|
||||
afx_msg void OnRButtonDown(UINT nFlags, CPoint point);
|
||||
|
||||
protected:
|
||||
|
||||
CString m_szTempLine;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user