using Content.Shared.EntityEffects;
namespace Content.Shared._CP14.Magic.Components.Spells;
///
/// Stores a list of effects for delayed actions.
///
[RegisterComponent, Access(typeof(CP14SharedMagicSystem))]
public sealed partial class CP14DelayedApplyEntityEffectsSpellComponent : Component
{
[DataField(required: true, serverOnly: true)]
public List Effects = new();
}