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

15 lines
383 B
C#

namespace Content.Server._NF.Smuggling.Components;
/// <summary>
/// Denotes a grid that is brought in via a dead drop.
/// </summary>
[RegisterComponent]
public sealed partial class ContrabandPodGridComponent : Component
{
/// <summary>
/// Maximum number of dead drops to spawn on the station.
/// </summary>
[DataField]
public bool Scanned = false;
}