[card.plugin] first version (at the moment replaces only cards on battlefield) (should be installed manually)

This commit is contained in:
magenoxx 2010-11-06 21:23:21 +00:00
parent d022c251f6
commit 5771691972
18 changed files with 1093 additions and 33 deletions

View file

@ -2,10 +2,12 @@ package mage.client.plugins;
import java.util.Collection;
import java.util.Map;
import java.util.Set;
import java.util.UUID;
import javax.swing.JComponent;
import mage.cards.Card;
import mage.cards.CardDimensions;
import mage.cards.MagePermanent;
import mage.client.cards.BigCard;
@ -18,4 +20,5 @@ public interface MagePlugins {
MagePermanent getMagePermanent(PermanentView card, BigCard bigCard, CardDimensions dimension, UUID gameId);
boolean isCardPluginLoaded();
void sortPermanents(Map<String, JComponent> ui, Collection<MagePermanent> permanents);
void downloadImage(Set<Card> allCards);
}