mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-17 21:48:58 +03:00
Co-authored-by: stellar-novas <stellar_novas@riseup.net> Co-authored-by: RedFoxIV <38788538+RedFoxIV@users.noreply.github.com> (cherry picked from commit 01d1ec4d4b04f6d76f239ec0da0970dc705736ef)
12 lines
331 B
C#
12 lines
331 B
C#
using Content.Shared.NPC.Systems;
|
|
using Robust.Shared.GameStates;
|
|
|
|
namespace Content.Shared.NPC.Components;
|
|
|
|
[RegisterComponent, NetworkedComponent, Access(typeof(NpcFactionSelectorSystem))]
|
|
public sealed partial class NpcFactionSelectorComponent : Component
|
|
{
|
|
[DataField]
|
|
public List<string> SelectableFactions = new();
|
|
}
|