Files
tbd-station-14/Content.Server/Cargo/Components/CargoBountyLabelComponent.cs

21 lines
552 B
C#

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