6
StarHorizon_Public/Content.Server/_NF/Pirate/Components/PirateBountyLabelComponent.cs
2026-01-24 12:49:55 +03:00

23 lines
606 B
C#

using Content.Server.Station.Systems;
namespace Content.Server._NF.Pirate.Components;
/// <summary>
/// This is used for marking containers as
/// containing goods for fulfilling bounties.
/// </summary>
[RegisterComponent]
public sealed partial class PirateBountyLabelComponent : Component
{
/// <summary>
/// The ID for the bounty this label corresponds to.
/// </summary>
[DataField, ViewVariables(VVAccess.ReadWrite)]
public string Id = string.Empty;
/// <summary>
/// Used to prevent recursion in calculating the price.
/// </summary>
public bool Calculating;
}