DamageForceSayEvent.cs 413 B

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