mirror of
https://github.com/ornfelt/azerothcore_lua_scripts
synced 2026-08-22 06:26:03 -04:00
17 lines
No EOL
261 B
C++
17 lines
No EOL
261 B
C++
#include "ScriptPCH.h"
|
|
|
|
class OnPVPHeal : public PlayerScript
|
|
{
|
|
public:
|
|
OnPVPHeal() : PlayerScript("OnPVPHeal") {}
|
|
|
|
void OnPVPHeal(Player* healer, Unit* healed, uint32 healAmount)
|
|
{
|
|
|
|
}
|
|
};
|
|
|
|
void AddSC_OnPVPHeal()
|
|
{
|
|
new OnPVPHeal();
|
|
} |