Ejemplo n.º 1
0
 public ServerPointSystem(Main game)
     : base(game)
 {
     EPRConfig = new EPRConfigFile();
 }
Ejemplo n.º 2
0
 private void Reload( CommandArgs args )
 {
     if( File.Exists( EPRConfigPath ) )
     {
         EPRConfig = EPRConfigFile.Read(EPRConfigPath);
     }
     else
     {
         EPRConfig = new EPRConfigFile();
     }
 }