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

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;
}