namespace Content.Shared.Speech; public sealed class AccentGetEvent : EntityEventArgs { /// /// The entity to apply the accent to. /// public EntityUid Entity { get; } /// /// The message to apply the accent transformation to. /// Modify this to apply the accent. /// public string Message { get; set; } public AccentGetEvent(EntityUid entity, string message) { Entity = entity; Message = message; } }