public Screenshot Run()
        {
            this.SolverEngine = this.Build();

            while (this._map.MineCounter.Count() > 0)
            {
                foreach (var step in this.SolverEngine.RunStep())
                {
                }
            }

            return(null);
        }
Example #2
0
 public MojBrojSolver(ISolverEngine solverEngine)
 {
     this.solverEngine = solverEngine;
 }