Added code to show a splash screen at startup.

This commit is contained in:
talisman%anamorphic.com 1999-06-24 01:34:34 +00:00
Родитель 9ff589b218
Коммит 6a077e9f61
1 изменённых файлов: 4 добавлений и 0 удалений

Просмотреть файл

@ -31,6 +31,7 @@ import grendel.prefs.base.UIPrefs;
import grendel.ui.MessageDisplayManager;
import grendel.ui.MultiMessageDisplayManager;
import grendel.ui.UnifiedMessageDisplayManager;
import grendel.ui.Splash;
/**
* This launches the Grendel GUI.
@ -40,6 +41,8 @@ public class Main {
static MessageDisplayManager fManager;
public static void main(String argv[]) {
Splash splash = new Splash();
UIPrefs prefs = UIPrefs.GetMaster();
@ -64,6 +67,7 @@ public class Main {
}
MessageDisplayManager.SetDefaultManager(fManager);
fManager.displayMaster();
splash.dispose();
}
}