It should be possible to play on larger boards when the computers 'move' is changed from playing a tile to picking the player's next available color.
13 lines
231 B
Java
13 lines
231 B
Java
package player.generator;
|
|
|
|
import model.Move;
|
|
|
|
public class MoveCandidate {
|
|
public final Move move;
|
|
public final GameScore score;
|
|
|
|
public MoveCandidate(Move move, GameScore score) {
|
|
this.move = move;
|
|
this.score = score;
|
|
}
|
|
} |