summaryrefslogtreecommitdiff
path: root/src/SMAPI/Framework/Models/SConfig.cs
diff options
context:
space:
mode:
authorJesse Plamondon-Willard <github@jplamondonw.com>2018-04-13 23:00:49 -0400
committerJesse Plamondon-Willard <github@jplamondonw.com>2018-04-13 23:00:49 -0400
commit504733dec7d629335b83841af38cd5da91d5231f (patch)
tree8cbf16a7218996e48bca3de20dc502ea37bd68c4 /src/SMAPI/Framework/Models/SConfig.cs
parenta3ade7a5126642f42794281057349fa5ff737cdd (diff)
downloadSMAPI-504733dec7d629335b83841af38cd5da91d5231f.tar.gz
SMAPI-504733dec7d629335b83841af38cd5da91d5231f.tar.bz2
SMAPI-504733dec7d629335b83841af38cd5da91d5231f.zip
fix console color scheme for PowerShell, and make it configurable
Diffstat (limited to 'src/SMAPI/Framework/Models/SConfig.cs')
-rw-r--r--src/SMAPI/Framework/Models/SConfig.cs3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/SMAPI/Framework/Models/SConfig.cs b/src/SMAPI/Framework/Models/SConfig.cs
index 2d6da0fa..b504f38b 100644
--- a/src/SMAPI/Framework/Models/SConfig.cs
+++ b/src/SMAPI/Framework/Models/SConfig.cs
@@ -20,5 +20,8 @@ namespace StardewModdingAPI.Framework.Models
/// <summary>Whether SMAPI should log more information about the game context.</summary>
public bool VerboseLogging { get; set; }
+
+ /// <summary>The console color scheme to use.</summary>
+ public MonitorColorScheme ColorScheme { get; set; }
}
}