mirror of
https://github.com/ornfelt/azerothcore_lua_scripts
synced 2026-08-22 06:26:03 -04:00
20 lines
No EOL
256 B
C++
20 lines
No EOL
256 B
C++
|
|
#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 |