Vanilla ships several diseases whose stages drive lesson gain, stay-home rolls, and illness attendance; cold/rain/snow raise onset via BehaviorDef scale.
13 lines
415 B
C#
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);
|
|
}
|