2021-07-29 06:58:38 +02:00
|
|
|
using Robust.Client.AutoGenerated;
|
|
|
|
|
using Robust.Client.UserInterface.Controls;
|
|
|
|
|
|
|
|
|
|
namespace Content.Client.Kitchen.UI
|
|
|
|
|
{
|
|
|
|
|
[GenerateTypedNameReferences]
|
2022-02-16 00:23:23 -07:00
|
|
|
public sealed partial class LabelledContentBox : BoxContainer
|
2021-07-29 06:58:38 +02:00
|
|
|
{
|
|
|
|
|
public string? LabelText { get => Label.Text; set => Label.Text = value; }
|
2021-10-28 14:23:17 +02:00
|
|
|
public string? ButtonText { get => EjectButton.Text; set => EjectButton.Text = value; }
|
2021-07-29 06:58:38 +02:00
|
|
|
}
|
|
|
|
|
}
|