namespace Content.Server.Xenoarchaeology.Artifact.XAT.Components;
///
/// This is used for an artifact that activates when above or below a certain pressure.
///
[RegisterComponent, Access(typeof(XATPressureSystem))]
public sealed partial class XATPressureComponent : Component
{
///
/// The lower-end pressure threshold. Is not considered when null.
///
[DataField]
public float? MinPressureThreshold;
///
/// The higher-end pressure threshold. Is not considered when null.
///
[DataField]
public float? MaxPressureThreshold;
}