using Content.Shared._CP14.Knowledge.Prototypes; using Robust.Shared.Prototypes; namespace Content.Shared._CP14.Knowledge.Components; /// /// a list of skills learned by this entity /// [RegisterComponent, Access(typeof(SharedCP14KnowledgeSystem))] public sealed partial class CP14KnowledgeStorageComponent : Component { [DataField, ViewVariables(VVAccess.ReadOnly)] public HashSet> Knowledges { get; private set; } = new(); }