IFFShowIFFMessage.cs 295 B

123456789101112
  1. using Robust.Shared.Serialization;
  2. namespace Content.Shared.Shuttles.Events;
  3. /// <summary>
  4. /// Raised on a client IFF console when it wishes to show IFF.
  5. /// </summary>
  6. [Serializable, NetSerializable]
  7. public sealed class IFFShowIFFMessage : BoundUserInterfaceMessage
  8. {
  9. public bool Show;
  10. }