namespace StardewModdingAPI.Framework.Models
{
/// The SMAPI configuration settings.
internal class SConfig
{
/********
** Accessors
********/
/// Whether to enable development features.
public bool DeveloperMode { get; set; }
/// Whether to check if a newer version of SMAPI is available on startup.
public bool CheckForUpdates { get; set; } = true;
/// Whether SMAPI should log more information about the game context.
public bool VerboseLogging { get; set; } = false;
/// A list of mod versions which should be considered compatible or incompatible regardless of whether SMAPI detects incompatible code.
public ModCompatibility[] ModCompatibility { get; set; }
/// A list of mods which should be considered obsolete and not loaded.
public DisabledMod[] DisabledMods { get; set; }
}
}