2023-07-16 21:12:53 +02:00
|
|
|
using Robust.Shared.Serialization;
|
|
|
|
|
|
|
|
|
|
namespace Content.Shared.Instruments.UI;
|
|
|
|
|
|
|
|
|
|
[Serializable, NetSerializable]
|
|
|
|
|
public sealed class InstrumentBandRequestBuiMessage : BoundUserInterfaceMessage
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Serializable, NetSerializable]
|
|
|
|
|
public sealed class InstrumentBandResponseBuiMessage : BoundUserInterfaceMessage
|
|
|
|
|
{
|
2023-09-11 09:42:41 +10:00
|
|
|
public (NetEntity, string)[] Nearby { get; set; }
|
2023-07-16 21:12:53 +02:00
|
|
|
|
2023-09-11 09:42:41 +10:00
|
|
|
public InstrumentBandResponseBuiMessage((NetEntity, string)[] nearby)
|
2023-07-16 21:12:53 +02:00
|
|
|
{
|
|
|
|
|
Nearby = nearby;
|
|
|
|
|
}
|
|
|
|
|
}
|