6
2025-11-12 10:55:00 +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;
}