25 lines
555 B
C++
25 lines
555 B
C++
#pragma once
|
|
|
|
class UserSession;
|
|
|
|
class PatchInfo
|
|
{
|
|
public:
|
|
PatchInfo(void);
|
|
~PatchInfo(void);
|
|
|
|
private:
|
|
DWORD m_dwPatchKey;
|
|
UserSession* m_pSession;
|
|
int m_nServerCount; //패치해야 하는 서버의 개수.
|
|
|
|
public:
|
|
VOID SetKey( DWORD dwKey ){ m_dwPatchKey = dwKey;}
|
|
VOID SetSession( UserSession* pSession ){ m_pSession = pSession; }
|
|
VOID SetServerCount( DWORD dwCount ){ m_nServerCount = dwCount;}
|
|
|
|
DWORD GetKey( ){ return m_dwPatchKey;}
|
|
UserSession* GetSession( ){ return m_pSession; }
|
|
int GetServerCount(){ return m_nServerCount; }
|
|
};
|