Add References to git

This commit is contained in:
2023-09-28 20:23:18 +08:00
parent 4d51eb339c
commit 50b5f8c2c1
276 changed files with 56093 additions and 2 deletions

View File

@ -0,0 +1,22 @@
using System.Collections.Generic;
namespace MinesweeperSolver {
class SolverActionHeader {
public readonly IList<SolverAction> solverActions;
public readonly IList<SolverAction> deadActions;
public SolverActionHeader() {
List<SolverAction> empty = new List<SolverAction>();
this.solverActions = empty.AsReadOnly();
this.deadActions = empty.AsReadOnly();
}
public SolverActionHeader(List<SolverAction> solverActions, List<SolverAction> deadActions) {
this.solverActions = solverActions.AsReadOnly();
this.deadActions = deadActions.AsReadOnly();
}
}
}