forked from External/mage
- new tourney's single game mode allow to play tourneys/drafts with all players in one game without multiple rounds; - it's allow to setup classic drafts with 1 vs 1 games and multiple rounds - added AI opponents supported including draft bots from a public servers;
15 lines
318 B
Java
15 lines
318 B
Java
|
|
|
|
package mage.game.tournament;
|
|
|
|
/**
|
|
*
|
|
* @author BetaSteward_at_googlemail.com
|
|
*/
|
|
public class TournamentSealedOptions extends TournamentOptions {
|
|
|
|
public TournamentSealedOptions(String name, String matchType, boolean isSingleMultiplayerGame) {
|
|
super(name, matchType, isSingleMultiplayerGame);
|
|
}
|
|
|
|
}
|