Files
crystall-punk-14/Content.Shared/_CP14/MagicSpellStorage/Components/CP14SpellStorageInteractionComponent.cs
Ed 9f798b4f6c Sprint loadout action (#698)
* SpellStorage restruct

* Update CP14SpellStorageSystem.cs

* Sprint
2025-01-05 17:46:54 +03:00

15 lines
546 B
C#

namespace Content.Shared._CP14.MagicSpellStorage.Components;
/// <summary>
/// The component allows you to use actions nested in an object not through hotbar, but through direct interaction with the object.
/// </summary>
[RegisterComponent, Access(typeof(CP14SpellStorageSystem))]
public sealed partial class CP14SpellStorageInteractionComponent : Component
{
/// <summary>
/// The selected action will automatically attempt to be used when interacting with the item.
/// </summary>
[DataField]
public int SelectedAction;
}