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 for newer versions of SMAPI and mods on startup.
public bool CheckForUpdates { get; set; }
/// SMAPI's GitHub project name, used to perform update checks.
public string GitHubProjectName { get; set; }
/// The base URL for SMAPI's web API, used to perform update checks.
public string WebApiBaseUrl { get; set; }
/// Whether SMAPI should log more information about the game context.
public bool VerboseLogging { get; set; }
/// 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; }
}
}