rs-client: refactoring (#1344)
* Rename some things to be more consistent everywhere * rs-client: refactoring * MenuAction -> MenuOpcode merge
This commit is contained in:
52
runescape-client/src/main/java/JagexCache.java
Normal file
52
runescape-client/src/main/java/JagexCache.java
Normal file
@@ -0,0 +1,52 @@
|
||||
import java.io.File;
|
||||
import net.runelite.mapping.Export;
|
||||
import net.runelite.mapping.Implements;
|
||||
import net.runelite.mapping.ObfuscatedName;
|
||||
import net.runelite.mapping.ObfuscatedSignature;
|
||||
|
||||
@ObfuscatedName("ff")
|
||||
@Implements("JagexCache")
|
||||
public class JagexCache {
|
||||
@ObfuscatedName("p")
|
||||
@Export("JagexCache_locationFile")
|
||||
static File JagexCache_locationFile;
|
||||
@ObfuscatedName("u")
|
||||
@ObfuscatedSignature(
|
||||
signature = "Lmn;"
|
||||
)
|
||||
@Export("JagexCache_randomDat")
|
||||
public static BufferedFile JagexCache_randomDat;
|
||||
@ObfuscatedName("x")
|
||||
@ObfuscatedSignature(
|
||||
signature = "Lmn;"
|
||||
)
|
||||
@Export("JagexCache_dat2File")
|
||||
public static BufferedFile JagexCache_dat2File;
|
||||
@ObfuscatedName("r")
|
||||
@ObfuscatedSignature(
|
||||
signature = "Lmn;"
|
||||
)
|
||||
@Export("JagexCache_idx255File")
|
||||
public static BufferedFile JagexCache_idx255File;
|
||||
@ObfuscatedName("v")
|
||||
@ObfuscatedSignature(
|
||||
signature = "[Lmn;"
|
||||
)
|
||||
@Export("JagexCache_idxFiles")
|
||||
public static BufferedFile[] JagexCache_idxFiles;
|
||||
@ObfuscatedName("g")
|
||||
@Export("JagexCache_validCacheLocations")
|
||||
static String[] JagexCache_validCacheLocations;
|
||||
@ObfuscatedName("dh")
|
||||
@ObfuscatedSignature(
|
||||
signature = "Liu;"
|
||||
)
|
||||
@Export("archive1")
|
||||
static Archive archive1;
|
||||
|
||||
static {
|
||||
JagexCache_randomDat = null;
|
||||
JagexCache_dat2File = null;
|
||||
JagexCache_idx255File = null;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user