From: Holger Z. <hz...@us...> - 2004-09-19 19:54:00
|
Update of /cvsroot/jake2/jake2/src/jake2 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21869/src/jake2 Modified Files: Jake2.java Log Message: splash screen with status messages Index: Jake2.java =================================================================== RCS file: /cvsroot/jake2/jake2/src/jake2/Jake2.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** Jake2.java 9 Jul 2004 06:50:51 -0000 1.3 --- Jake2.java 19 Sep 2004 19:53:51 -0000 1.4 *************** *** 27,30 **** --- 27,31 ---- import jake2.client.SCR; + import jake2.qcommon.*; import jake2.qcommon.Cvar; import jake2.qcommon.Qcommon; *************** *** 36,40 **** public final class Jake2 { ! /** * main is used to start the game. Quake2 for Java supports the --- 37,42 ---- public final class Jake2 { ! public static Q2DataDialog Q2Dialog = new Q2DataDialog(); ! /** * main is used to start the game. Quake2 for Java supports the *************** *** 44,47 **** --- 46,51 ---- public static void main(String[] args) { + Q2Dialog.setVisible(true); + // in C the first arg is the filename int argc = (args == null) ? 1 : args.length + 1; |