ShiverAttemptEvent.cs 187 B

12345678
  1. namespace Content.Shared.Body.Events;
  2. [ByRefEvent]
  3. public record struct ShiverAttemptEvent(EntityUid Uid)
  4. {
  5. public readonly EntityUid Uid = Uid;
  6. public bool Cancelled = false;
  7. }