blob: 02cb1ef585143aa12dae145472007ef4cc5732e2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
package ch.epfl.maze.physical.stragegies.picker;
import ch.epfl.maze.physical.Daedalus;
import ch.epfl.maze.util.Direction;
import java.util.Set;
/**
* A decision maker unaware of its distant environment.
*
* @author Pacien TRAN-GIRARD
*/
public interface BlindPicker extends ChoicePicker {
@Override
default Direction pick(Set<Direction> choices, Daedalus daedalus) {
return this.pick(choices);
}
}
|