namespace Omegasis.TimeFreeze.Framework { /// The mod configuration. internal class ModConfig { /// Whether time should be unfrozen while the player is swimming. public bool PassTimeWhileSwimming { get; set; } = true; /// Whether time should be unfrozen while the player is swimming in the vanilla bathhouse. public bool PassTimeWhileSwimmingInBathhouse { get; set; } = true; } }