6
2026-01-24 12:49:55 +03:00

14 lines
413 B
C#

using Robust.Shared.Serialization;
namespace Content.Shared.Damage.ForceSay;
/// <summary>
/// Sent to clients as a network event when their entity contains <see cref="DamageForceSayComponent"/>
/// that COMMANDS them to speak the current message in their chatbox
/// </summary>
[Serializable, NetSerializable]
public sealed class DamageForceSayEvent : EntityEventArgs
{
public string? Suffix;
}