namespace Content.Server.Xenoarchaeology.XenoArtifacts.Triggers.Components; /// /// Triggers when an instrument is played nearby /// [RegisterComponent] public sealed partial class ArtifactMusicTriggerComponent : Component { /// /// how close does the artifact have to be to the instrument to activate /// [DataField("range")] public float Range = 5; }