18 lines
530 B
C#
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;
|
|||
|
|
}
|
|||
|
|
}
|