summaryrefslogtreecommitdiffstats
path: root/src/jake2/util
diff options
context:
space:
mode:
authorRene Stoeckel <[email protected]>2005-11-16 22:24:53 +0000
committerRene Stoeckel <[email protected]>2005-11-16 22:24:53 +0000
commit43a2a2cac1a50b70407487a86908ea24ba92425e (patch)
tree3b96873ffdae2229b8dca123d035d48dc2ad742f /src/jake2/util
parent27be0694ee6c53ab645dd027a41b310a9226c027 (diff)
sorted the methods according to their original locations in the c files.
Diffstat (limited to 'src/jake2/util')
-rw-r--r--src/jake2/util/QuakeFile.java16
1 files changed, 6 insertions, 10 deletions
diff --git a/src/jake2/util/QuakeFile.java b/src/jake2/util/QuakeFile.java
index 3efcada..431a961 100644
--- a/src/jake2/util/QuakeFile.java
+++ b/src/jake2/util/QuakeFile.java
@@ -19,19 +19,15 @@
*/
// Created on 24.07.2004 by RST.
-// $Id: QuakeFile.java,v 1.4 2004-09-22 19:22:13 salomo Exp $
+
+// $Id: QuakeFile.java,v 1.5 2005-11-16 22:24:53 salomo Exp $
+
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.game.*;
import jake2.qcommon.Com;
-import java.io.FileNotFoundException;
-import java.io.IOException;
-import java.io.RandomAccessFile;
+import java.io.*;
/**
* RandomAccessFile, but handles readString/WriteString specially and offers
@@ -160,7 +156,7 @@ public class QuakeFile extends RandomAccessFile {
if (ndx == -1)
return null;
else
- return GameAI.itemlist[ndx];
+ return GameItems.itemlist[ndx];
}
} \ No newline at end of file