blob: a0074f77768c084c713dfe28aec93905b0c4e7df (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
namespace StardewModdingAPI.Framework.Models
{
/// <summary>Contains user settings from SMAPI's JSON configuration file.</summary>
internal class UserSettings
{
/*********
** Accessors
*********/
/// <summary>Whether to enable development features.</summary>
public bool DeveloperMode { get; set; }
/// <summary>Whether to check if a newer version of SMAPI is available on startup.</summary>
public bool CheckForUpdates { get; set; } = true;
}
}
|