| 12345678910111213141516171819202122 |
- 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,
- }
- }
|