DragonNest/Server/ServerCommon/DNUserEventHandler.h

18 lines
239 B
C
Raw Normal View History

2024-12-19 09:48:26 +08:00
#pragma once
class CDNUserSession;
class CDNUserEventHandler
{
protected:
CDNUserEventHandler( CDNUserSession* pSession );
public:
virtual ~CDNUserEventHandler();
virtual void OnFinalize();
private:
CDNUserSession* m_pSession;
};