game2006/server/gameserver/selfchecker.h
aozhiwei 4607c7a071 1
2023-02-13 11:19:38 +08:00

16 lines
209 B
C++

#pragma once
class SelfChecker
{
public:
static void Init();
static void UnInit();
static void Check();
private:
static void AddBuff(int buff_id);
static std::set<int> used_buffs;
};