DragonNest/Common/EternityEngine/LostDeviceProcess.h

20 lines
360 B
C
Raw Normal View History

2024-12-19 09:48:26 +08:00
#pragma once
class CLostDeviceProcess
{
public:
CLostDeviceProcess(void);
virtual ~CLostDeviceProcess(void);
protected:
static std::vector< CLostDeviceProcess * > s_vecLostDevice;
static CSyncLock s_SyncLock;
public:
virtual void OnLostDevice() {}
virtual void OnResetDevice() {}
static void OnLostDeviceList();
static void OnResetDeviceList();
};