Update of /cvsroot/jake2/jake2/src/jake2/util
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13343/src/jake2/util
Modified Files:
QuakeFile.java
Log Message:
sorted the methods according to their original locations in the c files.
Index: QuakeFile.java
===================================================================
RCS file: /cvsroot/jake2/jake2/src/jake2/util/QuakeFile.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** QuakeFile.java 22 Sep 2004 19:22:13 -0000 1.4
--- QuakeFile.java 16 Nov 2005 22:24:53 -0000 1.5
***************
*** 20,36 ****
// Created on 24.07.2004 by RST.
// $Id$
package jake2.util;
! import jake2.game.GameAI;
! import jake2.game.GameBase;
! import jake2.game.SuperAdapter;
! import jake2.game.edict_t;
! import jake2.game.gitem_t;
import jake2.qcommon.Com;
! import java.io.FileNotFoundException;
! import java.io.IOException;
! import java.io.RandomAccessFile;
/**
--- 20,32 ----
// Created on 24.07.2004 by RST.
+
// $Id$
+
package jake2.util;
! import jake2.game.*;
import jake2.qcommon.Com;
! import java.io.*;
/**
***************
*** 161,165 ****
return null;
else
! return GameAI.itemlist[ndx];
}
--- 157,161 ----
return null;
else
! return GameItems.itemlist[ndx];
}
|