Skip to content

Commit fb00b69

Browse files
committed
ModAPI.Common: remove unused variables from LauncherSettings.cs
1 parent 90a5149 commit fb00b69

File tree

1 file changed

+0
-35
lines changed

1 file changed

+0
-35
lines changed

ModAPI.Common/LauncherSettings.cs

Lines changed: 0 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -41,20 +41,6 @@ public static string SporeGamePath
4141
}
4242
}
4343

44-
public static string SteamPath
45-
{
46-
get
47-
{
48-
string value = null;
49-
_dictionary.TryGetValue("SteamPath", out value);
50-
return value;
51-
}
52-
set
53-
{
54-
_dictionary["SteamPath"] = value;
55-
}
56-
}
57-
5844
public static bool ForceGamePath
5945
{
6046
get
@@ -72,27 +58,6 @@ public static bool ForceGamePath
7258
}
7359
}
7460

75-
public static GameVersionType GameVersion
76-
{
77-
get
78-
{
79-
string value = null;
80-
_dictionary.TryGetValue("GameVersion", out value);
81-
if (value == null)
82-
{
83-
return GameVersionType.None;
84-
}
85-
else
86-
{
87-
return (GameVersionType) Enum.Parse(typeof(GameVersionType), value);
88-
}
89-
}
90-
set
91-
{
92-
_dictionary["GameVersion"] = value.ToString();
93-
}
94-
}
95-
9661
private static string GetConfigPath()
9762
{
9863
var programPath = Path.GetDirectoryName(System.Reflection.Assembly.GetEntryAssembly().Location);

0 commit comments

Comments
 (0)