14 lines
413 B
C#
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;
|
|
}
|