Table of Contents

Interface IHealable

Namespace
FishMMO.Shared.Core
Assembly
FishMMO.Shared.dll

Interface for entities that can be healed by a character or other source. Implement this to allow objects to receive healing.

public interface IHealable

Methods

Heal(ICharacter, int, bool)

Applies healing to the entity.

void Heal(ICharacter healer, int amount, bool ignoreAchievements = false)

Parameters

healer ICharacter

The character performing the healing.

amount int

The amount of healing to apply.

ignoreAchievements bool

If true, achievement progress is not affected by this healing event.