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