Files
crystall-punk-14/Content.Shared/Bed/Sleep/TryingToSleepEvent.cs

9 lines
270 B
C#
Raw Permalink Normal View History

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);