14 lines
358 B
C#
14 lines
358 B
C#
using Robust.Shared.Prototypes;
|
|
|
|
namespace Content.Server._NF.Cargo.Systems;
|
|
|
|
// Component to identify an item as matching a pirate bounty.
|
|
// Each item can match at most one bounty type.
|
|
[RegisterComponent]
|
|
public sealed partial class PirateBountyItemComponent : Component
|
|
{
|
|
// The ID of the category to match.
|
|
[IdDataField]
|
|
public string ID;
|
|
}
|