Borg laws announcement (second attempt) (#19474)

This commit is contained in:
chromiumboy
2023-08-24 21:56:01 -05:00
committed by GitHub
parent c73a90e16c
commit 26caf16152
8 changed files with 98 additions and 19 deletions

View File

@@ -1,4 +1,4 @@
using Content.Shared.Actions;
using Content.Shared.Actions;
using Content.Shared.Actions.ActionTypes;
using Robust.Shared.Serialization;
using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype;
@@ -63,9 +63,11 @@ public enum SiliconLawsUiKey : byte
public sealed class SiliconLawBuiState : BoundUserInterfaceState
{
public List<SiliconLaw> Laws;
public HashSet<string>? RadioChannels;
public SiliconLawBuiState(List<SiliconLaw> laws)
public SiliconLawBuiState(List<SiliconLaw> laws, HashSet<string>? radioChannels)
{
Laws = laws;
RadioChannels = radioChannels;
}
}