namespace Content.Server.Xenoarchaeology.Artifact.XAT.Components;
///
/// This is used for an artifact that is activated by having a certain temperature near it.
///
[RegisterComponent, Access(typeof(XATTemperatureSystem))]
public sealed partial class XATTemperatureComponent : Component
{
///
/// Threshold temperature for trigger activation.
///
[DataField]
public float TargetTemperature;
///
/// Marker, if temp needs to be above or below the target.
///
[DataField]
public bool TriggerOnHigherTemp = true;
}