Instrument band support, submodule update to 138.0.0 (#17995)
This commit is contained in:
committed by
GitHub
parent
69ff0ae2e6
commit
a2893dd6c3
@@ -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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user