namespace Content.Server.NPC; /// /// Cached data for the faction prototype. Can be modified at runtime. /// public sealed class FactionData { [ViewVariables] public HashSet Friendly = new(); [ViewVariables] public HashSet Hostile = new(); }