using Robust.Shared.Serialization;
namespace Content.Shared.Cargo.BUI;
[NetSerializable, Serializable]
public sealed class CargoPalletConsoleInterfaceState : BoundUserInterfaceState
{
///
/// estimated apraised value of all the entities on top of pallets on the same grid as the console
///
public int Appraisal;
///
/// number of entities on top of pallets on the same grid as the console
///
public int Count;
///
/// are the buttons enabled
///
public bool Enabled;
public CargoPalletConsoleInterfaceState(int appraisal, int count, bool enabled)
{
Appraisal = appraisal;
Count = count;
Enabled = enabled;
}
}