forked from External/mage
added Sealed tournaments
This commit is contained in:
parent
44aefaf47a
commit
f7ffbb4773
51 changed files with 652 additions and 143 deletions
|
|
@ -29,18 +29,15 @@
|
|||
package mage.game.draft;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import mage.cards.ExpansionSet;
|
||||
import mage.game.tournament.LimitedOptions;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author BetaSteward_at_googlemail.com
|
||||
*/
|
||||
public class DraftOptions implements Serializable {
|
||||
public class DraftOptions extends LimitedOptions implements Serializable {
|
||||
|
||||
protected String draftType;
|
||||
protected List<ExpansionSet> sets = new ArrayList<ExpansionSet>();
|
||||
protected TimingOption timing;
|
||||
|
||||
public enum TimingOption {
|
||||
|
|
@ -59,10 +56,6 @@ public class DraftOptions implements Serializable {
|
|||
}
|
||||
}
|
||||
|
||||
public List<ExpansionSet> getSets() {
|
||||
return sets;
|
||||
}
|
||||
|
||||
public String getDraftType() {
|
||||
return draftType;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue