Esempio n. 1
0
 public static CryptoProvider GetCryptoProvider(CsrGame game) => (CryptoProvider) new Csr2CryptoProvider();
Esempio n. 2
0
 protected PackerCommand()
 {
     this.HasRequiredOption("i|input=", "Specify input file", (Action <string>)(s => this.InputPath = s));
     this.HasOption("o|output=", "Specify output file", (Action <string>)(s => this.OutputPath      = s));
     this.HasOption("g|game=", "Specify target game", (Action <string>)(s => this.Game = this.ParseGame(s)));
 }