mirror of
https://github.com/magefree/mage.git
synced 2026-01-24 04:09:54 -08:00
[refactor] removed generic parameter from Game classes
This commit is contained in:
parent
4fd248c4f8
commit
9324e93868
27 changed files with 32 additions and 37 deletions
|
|
@ -38,7 +38,7 @@ import mage.game.match.MatchType;
|
|||
import mage.game.turn.TurnMod;
|
||||
import mage.players.Player;
|
||||
|
||||
public class TwoPlayerDuel extends GameImpl<TwoPlayerDuel> {
|
||||
public class TwoPlayerDuel extends GameImpl {
|
||||
|
||||
public TwoPlayerDuel(MultiplayerAttackOption attackOption, RangeOfInfluence range, int freeMulligans) {
|
||||
super(attackOption, range, freeMulligans);
|
||||
|
|
|
|||
|
|
@ -34,7 +34,7 @@ import mage.game.match.MatchType;
|
|||
*
|
||||
* @author BetaSteward_at_googlemail.com
|
||||
*/
|
||||
public class TwoPlayerDuelType extends MatchType<TwoPlayerDuelType> {
|
||||
public class TwoPlayerDuelType extends MatchType {
|
||||
|
||||
public TwoPlayerDuelType() {
|
||||
this.name = "Two Player Duel";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue