* UI: added playable card marks in look-at windows;

This commit is contained in:
Oleg Agafonov 2019-12-18 22:44:42 +04:00
parent ff1299cca9
commit cde9957f54
15 changed files with 200 additions and 122 deletions

View file

@ -2899,7 +2899,7 @@ public class TestPlayer implements Player {
}
@Override
public Set<UUID> getPlayableObjects(Game game, Zone zone) {
public Map<UUID, Integer> getPlayableObjects(Game game, Zone zone) {
return computerPlayer.getPlayableObjects(game, zone);
}

View file

@ -1048,7 +1048,7 @@ public class PlayerStub implements Player {
}
@Override
public Set<UUID> getPlayableObjects(Game game, Zone zone) {
public Map<UUID, Integer> getPlayableObjects(Game game, Zone zone) {
return null;
}