Delta-v/Content.Shared/_DV/VendingMachines/ShopVendorUI.cs

10 lines
243 B
C#

using Robust.Shared.Serialization;
namespace Content.Shared._DV.VendingMachines;
[Serializable, NetSerializable]
public sealed class ShopVendorPurchaseMessage(int index) : BoundUserInterfaceMessage
{
public readonly int Index = index;
}