forked from External/mage
21 lines
466 B
Java
21 lines
466 B
Java
/*
|
|
* To change this license header, choose License Headers in Project Properties.
|
|
* To change this template file, choose Tools | Templates
|
|
* and open the template in the editor.
|
|
*/
|
|
package mage.deck;
|
|
|
|
import mage.cards.decks.Constructed;
|
|
|
|
/**
|
|
*
|
|
* @author LevelX2
|
|
*/
|
|
public class StarWarsBlock extends Constructed {
|
|
|
|
public StarWarsBlock() {
|
|
super("Constructed Custom - Star Wars Block");
|
|
setCodes.add("SWS");
|
|
}
|
|
|
|
}
|