namespace Content.Shared.Trigger; /// /// Raised when a voice trigger is activated, containing the message that triggered it. /// /// The EntityUid of the entity sending the message /// The contents of the message /// The message without the phrase that triggered it. [ByRefEvent] public readonly record struct VoiceTriggeredEvent(EntityUid Source, string? Message, string MessageWithoutPhrase);