9 lines
187 B
C#
9 lines
187 B
C#
namespace Content.Shared.Body.Events;
|
|
|
|
[ByRefEvent]
|
|
public record struct ShiverAttemptEvent(EntityUid Uid)
|
|
{
|
|
public readonly EntityUid Uid = Uid;
|
|
public bool Cancelled = false;
|
|
}
|