Exemplo n.º 1
0
 public TetrisAi(TetrisAiWeights tetrisAiWeights)
 {
     this.landingHeight     = tetrisAiWeights.LandingHeight;
     this.rowTransitions    = tetrisAiWeights.RowTransitions;
     this.columnTransitions = tetrisAiWeights.ColumnTransitions;
     this.rowsCleared       = tetrisAiWeights.RowsCleared;
     this.numberOfHoles     = tetrisAiWeights.NumberOfHoles;
     this.wellSums          = tetrisAiWeights.WellSums;
 }
Exemplo n.º 2
0
 //////////////////////////////////////////////////////////////////////////
 public TetrisAi(TetrisAiWeights tetrisAiWeights)
 {
     landingHeight     = tetrisAiWeights.LandingHeight;
     rowTransitions    = tetrisAiWeights.RowTransitions;
     columnTransitions = tetrisAiWeights.ColumnTransitions;
     rowsCleared       = tetrisAiWeights.RowsCleared;
     numberOfHoles     = tetrisAiWeights.NumberOfHoles;
     wellSums          = tetrisAiWeights.WellSums;
 }