Files
tbd-station-14/Content.Server/Salvage/JobBoard/JobBoardLabelComponent.cs
Nemanja 0d878751fa Salvage Job Board (#37549)
* Salvage Job Board

* More development

* Small boy

* Computer yaml (partial)

* UI

* Rank unlock logic

* Job label printing

* appraisal tool integration

* Jobs

* add board to QM locker

* boom!

* command desc

* mild rewording

* ackh, mein pr ist brohken
2025-05-18 14:02:52 +10:00

18 lines
454 B
C#

using Content.Shared.Cargo.Prototypes;
using Robust.Shared.Prototypes;
namespace Content.Server.Salvage.JobBoard;
/// <summary>
/// Marks a label for a bounty for a given salvage job board prototype.
/// </summary>
[RegisterComponent]
public sealed partial class JobBoardLabelComponent : Component
{
/// <summary>
/// The bounty corresponding to this label.
/// </summary>
[DataField]
public ProtoId<CargoBountyPrototype>? JobId;
}