1
0

StatValuesEuiMessage.cs 530 B

123456789101112131415161718
  1. using Content.Shared.Eui;
  2. using Robust.Shared.Serialization;
  3. namespace Content.Shared.UserInterface;
  4. /// <summary>
  5. /// It's a message not a state because it's for debugging and it makes it easier to bootstrap more data dumping.
  6. /// </summary>
  7. [Serializable, NetSerializable]
  8. public sealed class StatValuesEuiMessage : EuiMessageBase
  9. {
  10. /// <summary>
  11. /// Titles for the window.
  12. /// </summary>
  13. public string Title = string.Empty;
  14. public List<string> Headers = new();
  15. public List<string[]> Values = new();
  16. }