15 lines
339 B
C#
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;
|
|
}
|
|
|