Files
Sun1602/Server/MasterServer/Sessions/WorldServerSession.h
T
2022-10-26 12:25:11 +08:00

22 lines
464 B
C++

#ifndef __WORLD_SERVER_SESSION_H__
#define __WORLD_SERVER_SESSION_H__
#pragma once
#include "ServerSessionEx.h"
class WorldServerSession : public ServerSessionEx
{
public:
WorldServerSession() {};
~WorldServerSession() {};
virtual eSERVER_TYPE GetServerType() { return WORLD_SERVER; }
protected:
// CHANGES: f110617.1L
virtual void OnRedirect(DWORD network_index, MSG_SERVER_TYPE* const first_contact_msg);
};
#endif //__WORLD_SERVER_SESSION_H__