From b417604466da840c1f0a4e38aeb0f63ce28d2cdf Mon Sep 17 00:00:00 2001 From: ClxS Date: Sat, 5 Mar 2016 12:14:53 +0000 Subject: Removed StardewInjector. That'll go in it's own testing branch when we get around trying to integrate it. --- StardewInjector/Config.cs | 72 ----------------------------------------------- 1 file changed, 72 deletions(-) delete mode 100644 StardewInjector/Config.cs (limited to 'StardewInjector/Config.cs') diff --git a/StardewInjector/Config.cs b/StardewInjector/Config.cs deleted file mode 100644 index cea45e98..00000000 --- a/StardewInjector/Config.cs +++ /dev/null @@ -1,72 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Configuration; -using System.Linq; -using System.Text; - -namespace StardewInjector -{ - public static class Config - { - public static bool EnableDebugMode - { - get - { - bool val = false; - bool.TryParse(ConfigurationManager.AppSettings["EnableDebugMode"], out val); - return val; - } - } - - public static bool EnableAlwaysSpawnFishingBubble - { - get - { - bool val = false; - bool.TryParse(ConfigurationManager.AppSettings["EnableAlwaysSpawnFishingBubble"], out val); - return val; - } - } - - public static bool EnableEasyFishing - { - get - { - bool val = false; - bool.TryParse(ConfigurationManager.AppSettings["EnableEasyFishing"], out val); - return val; - } - } - - public static int SecondsPerTenMinutes - { - get - { - int val = 7; - int.TryParse(ConfigurationManager.AppSettings["SecondsPerTenMinutes"], out val); - return val; - } - } - - public static float RunSpeed - { - get - { - float val = 1f; - float.TryParse(ConfigurationManager.AppSettings["RunSpeed"], out val); - return val; - } - } - - public static bool EnableTweakedDiagonalMovement - { - get - { - bool val = false; - bool.TryParse(ConfigurationManager.AppSettings["EnableTweakedDiagonalMovement"], out val); - return val; - } - } - - } -} -- cgit