6
2026-01-24 12:49:55 +03:00

9 lines
186 B
C#

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