6
StarHorizon_Public/Content.Server/Anomaly/Components/AntiAnomalyZoneComponent.cs
2025-11-05 11:11:22 +03:00

16 lines
465 B
C#

namespace Content.Server.Anomaly.Components;
/// <summary>
/// prohibits the possibility of anomalies appearing in the specified radius around the entity
/// </summary>
[RegisterComponent, Access(typeof(AnomalySystem))]
public sealed partial class AntiAnomalyZoneComponent : Component
{
/// <summary>
/// the radius in which anomalies cannot appear
/// </summary>
[DataField, ViewVariables(VVAccess.ReadWrite)]
public float ZoneRadius = 10;
}