diff options
author | andrew <xdotftw@gmail.com> | 2014-05-12 16:05:09 +0200 |
---|---|---|
committer | andrew <xdotftw@gmail.com> | 2014-05-12 16:05:09 +0200 |
commit | b3d2b5b2c94193fd9364b26293b7d96b748ff96d (patch) | |
tree | 215519ba96caea0269641209452661b8bd6e14da /src/Entities/Entity.h | |
parent | Fixed compilation (diff) | |
download | cuberite-b3d2b5b2c94193fd9364b26293b7d96b748ff96d.tar cuberite-b3d2b5b2c94193fd9364b26293b7d96b748ff96d.tar.gz cuberite-b3d2b5b2c94193fd9364b26293b7d96b748ff96d.tar.bz2 cuberite-b3d2b5b2c94193fd9364b26293b7d96b748ff96d.tar.lz cuberite-b3d2b5b2c94193fd9364b26293b7d96b748ff96d.tar.xz cuberite-b3d2b5b2c94193fd9364b26293b7d96b748ff96d.tar.zst cuberite-b3d2b5b2c94193fd9364b26293b7d96b748ff96d.zip |
Diffstat (limited to '')
-rw-r--r-- | src/Entities/Entity.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/Entities/Entity.h b/src/Entities/Entity.h index df03d635b..a111b128d 100644 --- a/src/Entities/Entity.h +++ b/src/Entities/Entity.h @@ -299,6 +299,9 @@ public: /// Called when the health drops below zero. a_Killer may be NULL (environmental damage) virtual void KilledBy(cEntity * a_Killer); + /// Called when the entity kills another entity + virtual void Killed(cEntity * a_Victim) {} + /// Heals the specified amount of HPs void Heal(int a_HitPoints); |