Example #1
0
 public UCIEngine(UCIEngineStartupArgs args)
     : base(args)
 {
     UserSuppliedArgs     = args;
     _lanToMove           = new LanToMove();
     _lanVariationToMoves = new LanVariationToMoves();
     InitializeEngineProcess(new UCIEngineMessageSubscriber(ResponseReceived));
 }
Example #2
0
 public UCIEngine(UCIEngineStartupArgs args, EngineProcess process)
     : base(args, process)
 {
     UserSuppliedArgs = args;
 }