import type { IInfectionStage } from "./IInfectionStage.js"; export interface IInfection { cure: boolean; delay: number; enable: boolean; infections: number; stages: IInfectionStage[]; }