[plugins] Added plugins support to Mage.Client (jspf). Created Mage.Theme.Plugin. Please run Mage.Client/install_3d_party_libs.sh (.bat) once to put library to local maven repository.

This commit is contained in:
magenoxx 2010-10-31 12:44:34 +00:00
parent 4d6c70e390
commit b356d2c7c1
22 changed files with 508 additions and 50 deletions

View file

@ -0,0 +1,11 @@
package mage.client.plugins;
import java.util.Map;
import javax.swing.JComponent;
public interface MagePlugins {
void loadPlugins();
void shutdown();
void updateGamePanel(Map<String, JComponent> ui);
}