Esempio n. 1
0
 public Game(Game other, AlgorithmType algorithmType)
     : this()
 {
     AlgorithmType = algorithmType;
     FromGame(other);
 }
Esempio n. 2
0
 public Game(Tableau tableau, AlgorithmType algorithmType)
     : this()
 {
     AlgorithmType = algorithmType;
     FromTableau(tableau);
 }
Esempio n. 3
0
 public Game(string s, AlgorithmType algorithmType)
     : this()
 {
     AlgorithmType = algorithmType;
     FromAsciiString(s);
 }