Added splash screen on Mage.Client startup. Use VM arguments: -splash:splash.jpg if you want to see it. Removed unused hardwoodfloor.png from resources.

This commit is contained in:
magenoxx 2010-11-28 12:23:04 +00:00
parent 11bec637ee
commit 3368f63161
4 changed files with 20 additions and 3 deletions

View file

@ -3,7 +3,6 @@ package mage.client.components;
import java.awt.Component;
import java.util.HashMap;
import java.util.Map;
import java.util.logging.Level;
import javax.swing.JButton;
@ -60,12 +59,12 @@ public class MageUI {
while (!j.isEnabled()) {
Thread.sleep(10);
}
Thread t = new Thread(new Runnable() {
Thread t = new Thread(new Runnable() {
@Override
public void run() {
j.doClick();
}
});
t.start();
t.start();
}
}