26 lines
418 B
C++
26 lines
418 B
C++
#include "stdafx.h"
|
|
#include "ServerSession.WorldServer.h"
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
//
|
|
ServerSessionWorldServer::ServerSessionWorldServer()
|
|
{
|
|
}
|
|
|
|
ServerSessionWorldServer::~ServerSessionWorldServer()
|
|
{
|
|
}
|
|
|
|
void ServerSessionWorldServer::Init()
|
|
{
|
|
ServerSession::Init();
|
|
}
|
|
|
|
void ServerSessionWorldServer::Release()
|
|
{
|
|
}
|
|
|
|
void ServerSessionWorldServer::Update()
|
|
{
|
|
}
|