* 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
18 lines
454 B
C#
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;
|
|
}
|