| 12345678910111213 |
- 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;
- }
|