DragonNest/Server/ServiceManager/SessionWatcher.h
2024-12-19 09:48:26 +08:00

17 lines
No EOL
241 B
C++

#pragma once
class CSessionWatcher
{
public:
CSessionWatcher();
~CSessionWatcher();
bool CheckWatchingItems();
bool AddWatchingItem();
bool DelWatchingItem();
private:
std::list <ULONG> m_WatchingList;
ULONG m_nLastAddingTime;
};