Files
tbd-station-14/Content.Shared/VendingMachines/VendingMachineInterfaceState.cs
2024-09-23 12:10:22 +10:00

23 lines
524 B
C#

using Robust.Shared.Serialization;
namespace Content.Shared.VendingMachines
{
[Serializable, NetSerializable]
public sealed class VendingMachineEjectMessage : BoundUserInterfaceMessage
{
public readonly InventoryType Type;
public readonly string ID;
public VendingMachineEjectMessage(InventoryType type, string id)
{
Type = type;
ID = id;
}
}
[Serializable, NetSerializable]
public enum VendingMachineUiKey
{
Key,
}
}