Mana symbols in ColorsChooser for deck generator.

This commit is contained in:
magenoxx 2010-11-30 18:14:15 +00:00
parent 2e86ffa300
commit 30b341f7d9
9 changed files with 66 additions and 9 deletions

View file

@ -1,5 +1,6 @@
package mage.interfaces.plugin;
import java.awt.Image;
import java.util.Collection;
import java.util.Map;
import java.util.Set;
@ -29,4 +30,5 @@ public interface CardPlugin extends Plugin {
void sortPermanents(Map<String, JComponent> ui, Collection<MagePermanent> cards);
void downloadImages(Set<Card> allCards);
void downloadSymbols();
Image getManaSymbolImage(String symbol);
}