Files
Sun1602/Server/GuildServer/Sessions/GameServerSession.cpp
T
2022-10-26 12:25:11 +08:00

24 lines
459 B
C++

#include "stdafx.h"
#include "GameServerSession.h"
#include <PacketHandler/PacketHandler.h>
GameServerSession::GameServerSession(void)
{
}
GameServerSession::~GameServerSession(void)
{
}
// CHANGES: f110617.1L
void GameServerSession::OnRedirect(DWORD network_index, MSG_SERVER_TYPE* const first_contact_msg)
{
ServerSessionEx::OnRedirect(network_index, first_contact_msg);
}
VOID GameServerSession::OnLogString( char *pszLog )
{
_PRINT( pszLog );
}