19 lines
401 B
C#
19 lines
401 B
C#
using Robust.Shared.Serialization;
|
|
|
|
namespace Content.Shared._DV.Salvage;
|
|
|
|
/// <summary>
|
|
/// Message for a mining voucher kit to be selected.
|
|
/// </summary>
|
|
[Serializable, NetSerializable]
|
|
public sealed class MiningVoucherSelectMessage(int index) : BoundUserInterfaceMessage
|
|
{
|
|
public readonly int Index = index;
|
|
}
|
|
|
|
[Serializable, NetSerializable]
|
|
public enum MiningVoucherUiKey : byte
|
|
{
|
|
Key
|
|
}
|