mirror of
https://github.com/magefree/mage.git
synced 2026-01-09 20:32:06 -08:00
[refactor] removed generic parameter from Player
This commit is contained in:
parent
99854be1fb
commit
1867a150c1
12 changed files with 15 additions and 23 deletions
|
|
@ -54,7 +54,7 @@ import java.util.*;
|
|||
*
|
||||
* @author BetaSteward_at_googlemail.com
|
||||
*/
|
||||
public class RandomPlayer extends ComputerPlayer<RandomPlayer> {
|
||||
public class RandomPlayer extends ComputerPlayer {
|
||||
|
||||
private boolean isSimulatedPlayer;
|
||||
private static Random rnd = new Random();
|
||||
|
|
|
|||
|
|
@ -66,7 +66,7 @@ import mage.game.stack.StackObject;
|
|||
* @author BetaSteward_at_googlemail.com
|
||||
*/
|
||||
@Ignore
|
||||
public class TestPlayer extends ComputerPlayer<TestPlayer> {
|
||||
public class TestPlayer extends ComputerPlayer {
|
||||
|
||||
private final List<PlayerAction> actions = new ArrayList<>();
|
||||
private final List<String> choices = new ArrayList<>();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue