summaryrefslogtreecommitdiff
path: root/src/StardewModdingAPI/Framework/Models/SConfig.cs
diff options
context:
space:
mode:
authorJesse Plamondon-Willard <github@jplamondonw.com>2017-10-07 23:20:36 -0400
committerJesse Plamondon-Willard <github@jplamondonw.com>2017-10-07 23:20:36 -0400
commitd0dd2f7ba729de6be749d326a2fed78988ba9d7b (patch)
treea22127da6a8900e9f29bbb847bfd5d3347f6b952 /src/StardewModdingAPI/Framework/Models/SConfig.cs
parent7889676ea24cafc945899bf25608784e3f5bc9e0 (diff)
parent5928f5f86c4493ddb6b89bce0b7d0fb73a884c09 (diff)
downloadSMAPI-d0dd2f7ba729de6be749d326a2fed78988ba9d7b.tar.gz
SMAPI-d0dd2f7ba729de6be749d326a2fed78988ba9d7b.tar.bz2
SMAPI-d0dd2f7ba729de6be749d326a2fed78988ba9d7b.zip
Merge branch 'add-mod-build-config' into develop
Diffstat (limited to 'src/StardewModdingAPI/Framework/Models/SConfig.cs')
-rw-r--r--src/StardewModdingAPI/Framework/Models/SConfig.cs27
1 files changed, 0 insertions, 27 deletions
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
-{
- /// <summary>The SMAPI configuration settings.</summary>
- internal class SConfig
- {
- /********
- ** Accessors
- ********/
- /// <summary>Whether to enable development features.</summary>
- public bool DeveloperMode { get; set; }
-
- /// <summary>Whether to check for newer versions of SMAPI and mods on startup.</summary>
- public bool CheckForUpdates { get; set; }
-
- /// <summary>SMAPI's GitHub project name, used to perform update checks.</summary>
- public string GitHubProjectName { get; set; }
-
- /// <summary>The base URL for SMAPI's web API, used to perform update checks.</summary>
- public string WebApiBaseUrl { get; set; }
-
- /// <summary>Whether SMAPI should log more information about the game context.</summary>
- public bool VerboseLogging { get; set; }
-
- /// <summary>Extra metadata about mods.</summary>
- public ModDataRecord[] ModData { get; set; }
- }
-}