Fix: module-info.java
This commit is contained in:
@@ -12,8 +12,12 @@ public abstract class OrderLogicCard {
|
||||
effect(player,players.size());
|
||||
players.add(player);
|
||||
}
|
||||
public Player pull(Player player){
|
||||
public Player pull(){
|
||||
return players.remove();
|
||||
}
|
||||
public Player getFirst()
|
||||
{
|
||||
return players.peek();
|
||||
}
|
||||
protected abstract void effect(Player player, int index) throws IndexOutOfBoundsException;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user