File tree Expand file tree Collapse file tree 1 file changed +0
-35
lines changed
Expand file tree Collapse file tree 1 file changed +0
-35
lines changed Original file line number Diff line number Diff 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 ) ;
You can’t perform that action at this time.
0 commit comments