forked from External/mage
draft stuff
This commit is contained in:
parent
2e13136101
commit
03e3be90d6
34 changed files with 1238 additions and 743 deletions
|
|
@ -28,17 +28,21 @@
|
|||
|
||||
package mage.view;
|
||||
|
||||
import java.io.Serializable;
|
||||
import mage.game.draft.DraftPlayer;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author BetaSteward_at_googlemail.com
|
||||
*/
|
||||
public class DraftPickView {
|
||||
public class DraftPickView implements Serializable {
|
||||
|
||||
protected CardsView booster;
|
||||
protected CardsView picks;
|
||||
|
||||
public DraftPickView() {
|
||||
|
||||
public DraftPickView(DraftPlayer player) {
|
||||
this.booster = new CardsView(player.getBooster());
|
||||
this.picks = new CardsView(player.getDeck().getSideboard());
|
||||
}
|
||||
|
||||
public CardsView getBooster() {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue