Interface IKillable
Interface for entities that can be killed by a character or other source. Implement this to allow objects to be killed and trigger death logic.
public interface IKillable
Methods
Kill(ICharacter)
Kills the entity, triggering death logic and effects.
void Kill(ICharacter killer)
Parameters
killerICharacterThe character responsible for the kill.