using Robust.Shared.Audio; namespace Content.Shared.Disease.Events; /// /// Raised by an entity about to sneeze/cough. /// Set Cancelled to true on event handling to suppress the sneeze /// [ByRefEvent] public record struct AttemptSneezeCoughEvent(EntityUid uid, string SnoughMessage, SoundSpecifier? SnoughSound, bool Cancelled = false);