mirror of
https://github.com/Squareville/TestEventServer.git
synced 2026-01-01 16:51:08 -06:00
9 lines
243 B
C++
9 lines
243 B
C++
#pragma once
|
|
#include "CppScripts.h"
|
|
|
|
class NtCombatChallengeExplodingDummy : public CppScripts::Script
|
|
{
|
|
void OnDie(Entity* self, Entity* killer) override;
|
|
void OnHitOrHealResult(Entity* self, Entity* attacker, int32_t damage) override;
|
|
};
|