rename references

This commit is contained in:
2023-09-28 20:24:18 +08:00
parent 50b5f8c2c1
commit 0be2781d70
274 changed files with 0 additions and 0 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();
}
}
}