SweatAttemptEvent.cs 186 B

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