Files
crystall-punk-14/Content.Shared/Body/Events/SweatAttemptEvent.cs

9 lines
186 B
C#
Raw Permalink Normal View History

namespace Content.Shared.Body.Events;
[ByRefEvent]
public record struct SweatAttemptEvent(EntityUid Uid)
{
public readonly EntityUid Uid = Uid;
public bool Cancelled = false;
}