mirror of
https://github.com/space-syndicate/space-station-14.git
synced 2026-02-15 00:34:44 +01:00
19 lines
530 B
C#
19 lines
530 B
C#
using Content.Shared.Eui;
|
|
using Robust.Shared.Serialization;
|
|
|
|
namespace Content.Shared.UserInterface;
|
|
|
|
/// <summary>
|
|
/// It's a message not a state because it's for debugging and it makes it easier to bootstrap more data dumping.
|
|
/// </summary>
|
|
[Serializable, NetSerializable]
|
|
public sealed class StatValuesEuiMessage : EuiMessageBase
|
|
{
|
|
/// <summary>
|
|
/// Titles for the window.
|
|
/// </summary>
|
|
public string Title = string.Empty;
|
|
public List<string> Headers = new();
|
|
public List<string[]> Values = new();
|
|
}
|