9 lines
186 B
C#
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;
|
|
}
|