6
StarHorizon_Public/Content.Shared/Bed/Sleep/TryingToSleepEvent.cs
2025-12-18 02:55:17 +03:00

9 lines
270 B
C#

namespace Content.Shared.Bed.Sleep;
/// <summary>
/// Raised by an entity about to fall asleep.
/// Set Cancelled to true on event handling to interrupt
/// </summary>
[ByRefEvent]
public record struct TryingToSleepEvent(EntityUid uid, bool Cancelled = false);