Files
wwdpublic/Content.Shared/ItemRecall/RecallMarkerComponent.cs
ScarKy0 f6cd6b0f9e Wizard Item Recall Spell (#34411)
(cherry picked from commit bf6fd4d581de27b8b293411c409aa7ed2c332b78)
2025-09-20 20:31:51 +03:00

19 lines
534 B
C#

using Robust.Shared.GameStates;
using Robust.Shared.Utility;
namespace Content.Shared.ItemRecall;
/// <summary>
/// Component used as a marker for an item marked by the ItemRecall ability.
/// </summary>
[RegisterComponent, NetworkedComponent, AutoGenerateComponentState, Access(typeof(SharedItemRecallSystem))]
public sealed partial class RecallMarkerComponent : Component
{
/// <summary>
/// The action that marked this item.
/// </summary>
[DataField, AutoNetworkedField]
public EntityUid? MarkedByAction;
}