6
2026-01-24 12:49:55 +03:00

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();
}