using Robust.Shared.Serialization;
namespace Content.Shared._NF.Bank.BUI;
[NetSerializable, Serializable]
public sealed class BankATMMenuInterfaceState : BoundUserInterfaceState
{
///
/// bank balance of the character using the atm
///
public int Balance;
///
/// are the buttons enabled
///
public bool Enabled;
///
/// how much cash is inserted
///
public int Deposit;
public BankATMMenuInterfaceState(int balance, bool enabled, int deposit)
{
Balance = balance;
Enabled = enabled;
Deposit = deposit;
}
}