eluna-scripts-ornfelt/lua/WowEmulationScriptPack/C++/Logic/CustomWorldBossSystem.h

20 lines
256 B
C
Raw Permalink Normal View History

2023-08-16 00:50:59 +02:00
#ifndef _WORLDBOSSSYSTEM_H
#define _WORLDBOSSSYSTEM_H
class CustomWorldBossSystem {
private:
void insertNewKillCounter(int bossid, int counter);
void updateKillCounter(int bossid, int counter);
public:
void updateCounter(int bossid);
};
#endif