[refactor] removed generic parameter from Game classes

This commit is contained in:
North 2014-06-03 12:33:02 +03:00
parent 4fd248c4f8
commit 9324e93868
27 changed files with 32 additions and 37 deletions

View file

@ -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);

View file

@ -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";