6
2026-01-24 12:49:55 +03:00

15 lines
339 B
C#

namespace Content.Server.NPC.Queries.Considerations;
/// <summary>
/// Returns if the target is below a certain temperature.
/// </summary>
public sealed partial class TargetLowTempCon : UtilityConsideration
{
/// <summary>
/// The minimum temperature they must be.
/// </summary>
[DataField]
public float MinTemp;
}