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

17 lines
514 B
C#

namespace Content.Server._NF.Smuggling.Components;
/// <summary>
/// Denotes an item as being a potential dead drop candidate.
/// If/when dead drops are generated or moved, this entity may
/// receive a DeadDropComponent.
/// </summary>
/// <remarks>
/// Should be improved upon as a way to generate random dead drops.
/// </remarks>
[RegisterComponent]
public sealed partial class PotentialDeadDropComponent : Component
{
[DataField]
public string HintText = "dead-drop-hint-generic";
}