6
2025-11-03 10:15:18 +03:00

18 lines
530 B
C#

using Robust.Client.AutoGenerated;
using Robust.Client.UserInterface.Controls;
using Robust.Client.UserInterface.XAML;
namespace Content.Client.CartridgeLoader.Cartridges;
[GenerateTypedNameReferences]
public sealed partial class LogProbeUiEntry : BoxContainer
{
public LogProbeUiEntry(int numberLabel, string timeText, string accessorText)
{
RobustXamlLoader.Load(this);
NumberLabel.Text = numberLabel.ToString();
TimeLabel.Text = timeText;
AccessorLabel.Text = accessorText;
}
}