* Cryogenic sleep units * pause map support * no more body deletion * Cryogenic Storage Units * boowomp * no more emag, no more dropping present people
19 lines
536 B
C#
19 lines
536 B
C#
using Content.Client.Message;
|
|
using Robust.Client.AutoGenerated;
|
|
using Robust.Client.UserInterface.Controls;
|
|
using Robust.Client.UserInterface.XAML;
|
|
|
|
namespace Content.Client.Bed.Cryostorage;
|
|
|
|
[GenerateTypedNameReferences]
|
|
public sealed partial class CryostorageSlotControl : BoxContainer
|
|
{
|
|
public CryostorageSlotControl(string name, string itemName)
|
|
{
|
|
RobustXamlLoader.Load(this);
|
|
|
|
SlotLabel.SetMarkup(Loc.GetString("cryostorage-ui-label-slot-name", ("slot", name)));
|
|
ItemLabel.Text = itemName;
|
|
}
|
|
}
|