перенос файлов клиента из папки White в _White

This commit is contained in:
Remuchi
2024-01-28 17:32:55 +07:00
parent c80b10a688
commit 21dbccfec9
139 changed files with 345 additions and 434 deletions

View File

@@ -0,0 +1,22 @@
using Robust.Client.AutoGenerated;
using Robust.Client.Graphics;
using Robust.Client.UserInterface;
using Robust.Client.UserInterface.XAML;
namespace Content.Client._White.Economy.Ui;
[GenerateTypedNameReferences]
public sealed partial class VendingItem : Control
{
public VendingItem(string itemName, string price, Texture? texture = null)
{
RobustXamlLoader.Load(this);
VendingItemName.Text = itemName;
VendingItemBuyButton.Text = price;
// VendingItemBuyButton.Disabled = !canBuy;
VendingItemTexture.Texture = texture;
}
}