16 lines
489 B
C#
16 lines
489 B
C#
|
|
using Robust.Client.AutoGenerated;
|
||
|
|
using Robust.Client.UserInterface.Controls;
|
||
|
|
|
||
|
|
namespace Content.Client.Kitchen.UI
|
||
|
|
{
|
||
|
|
[GenerateTypedNameReferences]
|
||
|
|
public partial class LabelledContentBox : BoxContainer
|
||
|
|
{
|
||
|
|
public string? LabelText { get => Label.Text; set => Label.Text = value; }
|
||
|
|
public string? ButtonText { get => Button.Text; set => Button.Text = value; }
|
||
|
|
|
||
|
|
public ItemList BoxContents => ItemList;
|
||
|
|
public Button EjectButton => Button;
|
||
|
|
}
|
||
|
|
}
|