* Cargo Accounts, Request Consoles, and lock boxes * Funding Allocation Computer * final changes * test fix * remove dumb code * ScarKy0 review * first cour * second cour * Update machines.yml * review --------- Co-authored-by: ScarKy0 <106310278+ScarKy0@users.noreply.github.com> Co-authored-by: Milon <milonpl.git@proton.me>
23 lines
585 B
C#
23 lines
585 B
C#
using Robust.Shared.Serialization;
|
|
|
|
namespace Content.Shared.Cargo.BUI;
|
|
|
|
[NetSerializable, Serializable]
|
|
public sealed class CargoConsoleInterfaceState : BoundUserInterfaceState
|
|
{
|
|
public string Name;
|
|
public int Count;
|
|
public int Capacity;
|
|
public NetEntity Station;
|
|
public List<CargoOrderData> Orders;
|
|
|
|
public CargoConsoleInterfaceState(string name, int count, int capacity, NetEntity station, List<CargoOrderData> orders)
|
|
{
|
|
Name = name;
|
|
Count = count;
|
|
Capacity = capacity;
|
|
Station = station;
|
|
Orders = orders;
|
|
}
|
|
}
|