eluna-scripts-ornfelt/lua/WowEmulationScriptPack/C++/onpvpheal.cpp
2024-09-23 07:59:23 +02:00

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();
}