-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathComputerPlayer.java
More file actions
44 lines (33 loc) · 818 Bytes
/
ComputerPlayer.java
File metadata and controls
44 lines (33 loc) · 818 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
package logic.utils.players;
import logic.utils.Card;
import java.util.List;
import java.util.concurrent.CompletableFuture;
public class ComputerPlayer extends ClientPlayer {
public ComputerPlayer(String name) {
super(name);
}
@Override
public CompletableFuture<Card> takeTurn() {
canPlay = true;
return null; // TODO
}
@Override
public CompletableFuture<Card> chooseCard() {
return null; // TODO
}
@Override
public CompletableFuture<String> choosePlayer(List<String> players) {
return null; // TODO
}
@Override
public CompletableFuture<Integer> choosePosition() {
return null; // TODO
}
@Override
public void confirmMove() {
// TODO
}
@Override
public void stop() {
}
}