Files
crystall-punk-14/Content.Server/_CP14/MagicSpell/CP14AutoLearnActionComponent.cs

11 lines
250 B
C#
Raw Normal View History

using Robust.Shared.Prototypes;
namespace Content.Server._CP14.MagicSpell;
[RegisterComponent]
public sealed partial class CP14AutoLearnActionComponent : Component
{
[DataField(required: true)]
public HashSet<EntProtoId> Actions = new();
}