⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 battleseversession.cpp

📁 奇迹世界 部分源代码奇迹世界 部分源代码奇迹世界 部分源代码
💻 CPP
字号:
#include "stdafx.h"
#include "BattleServerSession.h"
#include "PacketHandler.h"
#include <PacketStruct.h>

BattleServerSession::BattleServerSession()
{
}

BattleServerSession::~BattleServerSession()
{
}

VOID BattleServerSession::Init()
{
	ServerSession::Init();
}

VOID BattleServerSession::Release()
{
	ServerSession::Release();
}

VOID BattleServerSession::Update()
{
	ServerSession::Update();
}

VOID BattleServerSession::OnConnect( BOOL bSuccess, DWORD dwNetworkIndex )
{
	ServerSession::OnConnect( bSuccess, dwNetworkIndex );
}

VOID BattleServerSession::OnDisconnect()
{
	ServerSession::OnDisconnect();
}

VOID BattleServerSession::OnRecv( BYTE *pMsg, WORD wSize )
{
	PacketHandler::Instance()->ParsePacket_DG( this, (MSG_BASE *)pMsg, wSize );
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -