📄 msgtime.cpp
字号:
// MsgTime.cpp: implementation of the CMsgTime class.
//
//////////////////////////////////////////////////////////////////////
#include "AllMsg.h"
#include "3DGameMap.h"
//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////
CMsgTime::CMsgTime()
{
Init();
m_pInfo =(MSG_Info *)m_bufMsg;
}
CMsgTime::~CMsgTime()
{
}
//////////////////////////////////////////////////////////////////////
BOOL CMsgTime::Create(char* pbufMsg, DWORD dwMsgSize)
{
if (!CNetMsg::Create(pbufMsg, dwMsgSize))
return false;
if(_MSG_TIME != this->GetType())
return false;
return true;
}
//////////////////////////////////////////////////////////////////////
void CMsgTime::Process(void* pInfo)
{
}
//////////////////////////////////////////////////////////////////////
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -