Files
tbd-station-14/Content.Shared/Rejuvenate/RejuvenateEvent.cs
2025-10-19 14:42:18 +00:00

10 lines
378 B
C#

namespace Content.Shared.Rejuvenate;
/// <summary>
/// Raised when an entity is supposed to be rejuvenated,
/// meaning it should heal all damage, debuffs or other negative status effects.
/// Systems should handle healing the entity in a subscription to this event.
/// Used for the Rejuvenate admin verb.
/// </summary>
public sealed class RejuvenateEvent : EntityEventArgs;