DragonNest/Server/ServerCommon/DNUserEventHandler.h

18 lines
239 B
C
Raw Permalink Normal View History

#pragma once
class CDNUserSession;
class CDNUserEventHandler
{
protected:
CDNUserEventHandler( CDNUserSession* pSession );
public:
virtual ~CDNUserEventHandler();
virtual void OnFinalize();
private:
CDNUserSession* m_pSession;
};