using Content.Server.StationEvents.Events; namespace Content.Server.StationEvents.Components; /// /// Configuration component for the Space Ninja antag. /// [RegisterComponent, Access(typeof(NinjaSpawnRule))] public sealed partial class NinjaSpawnRuleComponent : Component { /// /// Distance that the ninja spawns from the station's half AABB radius /// [DataField("spawnDistance")] public float SpawnDistance = 20f; }