Instrument band support, submodule update to 138.0.0 (#17995)

This commit is contained in:
Vera Aguilera Puerto
2023-07-16 21:12:53 +02:00
committed by GitHub
parent 69ff0ae2e6
commit a2893dd6c3
16 changed files with 722 additions and 178 deletions

View File

@@ -0,0 +1,19 @@
using Robust.Shared.Serialization;
namespace Content.Shared.Instruments.UI;
[Serializable, NetSerializable]
public sealed class InstrumentBandRequestBuiMessage : BoundUserInterfaceMessage
{
}
[Serializable, NetSerializable]
public sealed class InstrumentBandResponseBuiMessage : BoundUserInterfaceMessage
{
public (EntityUid, string)[] Nearby { get; set; }
public InstrumentBandResponseBuiMessage((EntityUid, string)[] nearby)
{
Nearby = nearby;
}
}