13 lines
473 B
C#
13 lines
473 B
C#
namespace Content.Server._NF.GameRule.Components;
|
|
|
|
[RegisterComponent, Access(typeof(NFAdventureRuleSystem))]
|
|
public sealed partial class NFAdventureRuleComponent : Component
|
|
{
|
|
public List<EntityUid> NFPlayerMinds = new();
|
|
public List<EntityUid> CargoDepots = new();
|
|
public List<EntityUid> MarketStations = new();
|
|
public List<EntityUid> RequiredPois = new();
|
|
public List<EntityUid> OptionalPois = new();
|
|
public List<EntityUid> UniquePois = new();
|
|
}
|