* 27 file diff * 27 file diff 2 * Apply suggestions from code review --------- Co-authored-by: Princess Cheeseballs <66055347+Pronana@users.noreply.github.com> Co-authored-by: slarticodefast <161409025+slarticodefast@users.noreply.github.com>
22 lines
526 B
C#
22 lines
526 B
C#
namespace Content.Shared.Speech;
|
|
|
|
public sealed class AccentGetEvent : EntityEventArgs
|
|
{
|
|
/// <summary>
|
|
/// The entity to apply the accent to.
|
|
/// </summary>
|
|
public EntityUid Entity { get; }
|
|
|
|
/// <summary>
|
|
/// The message to apply the accent transformation to.
|
|
/// Modify this to apply the accent.
|
|
/// </summary>
|
|
public string Message { get; set; }
|
|
|
|
public AccentGetEvent(EntityUid entity, string message)
|
|
{
|
|
Entity = entity;
|
|
Message = message;
|
|
}
|
|
}
|