Updated Theme plugin interface and implementation (still in progress).

This commit is contained in:
magenoxx 2010-11-16 18:32:49 +00:00
parent a731fba667
commit 2cb1136a52
5 changed files with 48 additions and 32 deletions

View file

@ -13,5 +13,6 @@ import net.xeoh.plugins.base.Plugin;
* @author nantuko
*/
public interface ThemePlugin extends Plugin {
void apply(Map<String, JComponent> ui);
void applyInGame(Map<String, JComponent> ui);
void applyOnTable(Map<String, JComponent> ui);
}