summaryrefslogtreecommitdiff
path: root/StardewInjector/Config.cs
diff options
context:
space:
mode:
Diffstat (limited to 'StardewInjector/Config.cs')
-rw-r--r--StardewInjector/Config.cs72
1 files changed, 0 insertions, 72 deletions
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;
- }
- }
-
- }
-}