* basic eui and window * finish EUI, update defaults * unnecessary usings * convert to bounduserinterface * merge me up merge me up inside * Fix repeated define for component in prototype * impl swept UI suggestion * apply discord reviews * small changes
20 lines
528 B
C#
20 lines
528 B
C#
using Robust.Client.AutoGenerated;
|
|
using Robust.Client.UserInterface.Controls;
|
|
using Robust.Client.UserInterface.CustomControls;
|
|
using Robust.Client.UserInterface.XAML;
|
|
|
|
namespace Content.Client.Chemistry.UI
|
|
{
|
|
[GenerateTypedNameReferences]
|
|
public partial class TransferAmountWindow : SS14Window
|
|
{
|
|
public Button applyButton => ApplyButton;
|
|
public LineEdit amountLineEdit => AmountLineEdit;
|
|
|
|
public TransferAmountWindow()
|
|
{
|
|
RobustXamlLoader.Load(this);
|
|
}
|
|
}
|
|
}
|