Files
h-school/src/HSchool.Simulation/HealthConditionSystem.cs
T
Leonid Pershin 2d633411e4 Add DiseaseDef diseases with weather vectors and excused absence.
Vanilla ships several diseases whose stages drive lesson gain, stay-home
rolls, and illness attendance; cold/rain/snow raise onset via BehaviorDef scale.
2026-08-21 13:28:57 +03:00

13 lines
415 B
C#

using HSchool.People;
namespace HSchool.Simulation;
/// <summary>
/// Ticks medical conditions. DiseaseDef onset and stage curves live in <see cref="DiseaseSystem"/>.
/// Kept so older call sites and phase-77 tests still have a named entry.
/// </summary>
internal static class HealthConditionSystem
{
public static bool Apply(School school, double gameMinutes) => DiseaseSystem.Apply(school, gameMinutes);
}