| 1234567891011121314151617 |
- 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;
- }
- }
|