Add cargo shuttle (#8686)
This commit is contained in:
22
Content.Shared/Cargo/BUI/CargoConsoleInterfaceState.cs
Normal file
22
Content.Shared/Cargo/BUI/CargoConsoleInterfaceState.cs
Normal file
@@ -0,0 +1,22 @@
|
||||
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 int Balance;
|
||||
public List<CargoOrderData> Orders;
|
||||
|
||||
public CargoConsoleInterfaceState(string name, int count, int capacity, int balance, List<CargoOrderData> orders)
|
||||
{
|
||||
Name = name;
|
||||
Count = count;
|
||||
Capacity = capacity;
|
||||
Balance = balance;
|
||||
Orders = orders;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user