Files
crystall-punk-14/Content.Shared/_CP14/MagicSpell/Components/CP14MagicEffectStaminaCostComponent.cs

14 lines
408 B
C#
Raw Normal View History

using Content.Shared._CP14.MagicSpellStorage;
namespace Content.Shared._CP14.MagicSpell.Components;
/// <summary>
/// Restricts the use of this action, by spending stamina.
/// </summary>
[RegisterComponent, Access(typeof(CP14SharedMagicSystem), typeof(CP14SpellStorageSystem))]
public sealed partial class CP14MagicEffectStaminaCostComponent : Component
{
[DataField]
public float Stamina = 0f;
}