Table of Contents

Class HealedEventArgs

Namespace
Exiled.Events.EventArgs.Player
Assembly
Exiled.Events.dll

Contains all information after a Player has healed.

public class HealedEventArgs : IPlayerEvent, IExiledEvent
Inheritance
HealedEventArgs
Implements
Inherited Members
Extension Methods

Constructors

HealedEventArgs(Player, float)

Initializes a new instance of the HealedEventArgs class.

public HealedEventArgs(Player player, float lastAmount)

Parameters

player Player
lastAmount float

Properties

HealedAmount

Gets the amount of health healed.

public float HealedAmount { get; }

Property Value

float

LastAmount

Gets the player's last recorded amount of health.

public float LastAmount { get; }

Property Value

float

Player

Gets the Player triggering the event.

public Player Player { get; }

Property Value

Player