forked from External/mage
11 lines
219 B
Java
11 lines
219 B
Java
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);
|
|
}
|