forked from External/mage
added tournaments - drafts are now a variant of tournament
This commit is contained in:
parent
78e60ce457
commit
ffc7b5bfd8
88 changed files with 3768 additions and 311 deletions
|
|
@ -39,10 +39,8 @@ import mage.cards.ExpansionSet;
|
|||
*/
|
||||
public class DraftOptions implements Serializable {
|
||||
|
||||
protected String name;
|
||||
protected String draftType;
|
||||
protected List<ExpansionSet> sets = new ArrayList<ExpansionSet>();
|
||||
protected List<String> playerTypes = new ArrayList<String>();
|
||||
protected TimingOption timing;
|
||||
|
||||
public enum TimingOption {
|
||||
|
|
@ -61,22 +59,10 @@ public class DraftOptions implements Serializable {
|
|||
}
|
||||
}
|
||||
|
||||
public DraftOptions(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
public List<ExpansionSet> getSets() {
|
||||
return sets;
|
||||
}
|
||||
|
||||
public List<String> getPlayerTypes() {
|
||||
return playerTypes;
|
||||
}
|
||||
|
||||
public String getDraftType() {
|
||||
return draftType;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue