From 929dccb75a1405737975d76648e015a3e7c00177 Mon Sep 17 00:00:00 2001 From: Jesse Plamondon-Willard Date: Sat, 7 Oct 2017 23:07:10 -0400 Subject: reorganise repo structure --- src/StardewModdingAPI/Framework/Models/SConfig.cs | 27 ----------------------- 1 file changed, 27 deletions(-) delete mode 100644 src/StardewModdingAPI/Framework/Models/SConfig.cs (limited to 'src/StardewModdingAPI/Framework/Models/SConfig.cs') diff --git a/src/StardewModdingAPI/Framework/Models/SConfig.cs b/src/StardewModdingAPI/Framework/Models/SConfig.cs deleted file mode 100644 index 401e1a3a..00000000 --- a/src/StardewModdingAPI/Framework/Models/SConfig.cs +++ /dev/null @@ -1,27 +0,0 @@ -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; } - - /// Extra metadata about mods. - public ModDataRecord[] ModData { get; set; } - } -} -- cgit