* Salvage Job Board * More development * Small boy * Computer yaml (partial) * UI * Rank unlock logic * Job label printing * appraisal tool integration * Jobs * add board to QM locker * boom! * command desc * mild rewording * ackh, mein pr ist brohken
27 lines
790 B
C#
27 lines
790 B
C#
using Content.Shared.Cargo.Prototypes;
|
|
using Robust.Shared.Prototypes;
|
|
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 List<ProtoId<CargoProductPrototype>> Products;
|
|
|
|
public CargoConsoleInterfaceState(string name, int count, int capacity, NetEntity station, List<CargoOrderData> orders, List<ProtoId<CargoProductPrototype>> products)
|
|
{
|
|
Name = name;
|
|
Count = count;
|
|
Capacity = capacity;
|
|
Station = station;
|
|
Orders = orders;
|
|
Products = products;
|
|
}
|
|
}
|