Adds deobfuscator Adds injected-client Adds injector-plugin Adds runescape-client Replaces RL's apis Small bug with sprites atm, will be resolved soon. tired af. Builds, probably
57 lines
1.3 KiB
Java
57 lines
1.3 KiB
Java
import net.runelite.mapping.Export;
|
|
import net.runelite.mapping.Implements;
|
|
import net.runelite.mapping.ObfuscatedName;
|
|
import net.runelite.mapping.ObfuscatedSignature;
|
|
|
|
@ObfuscatedName("ab")
|
|
@Implements("WorldMapSection")
|
|
public interface WorldMapSection {
|
|
@ObfuscatedName("m")
|
|
@ObfuscatedSignature(
|
|
signature = "(Lag;I)V",
|
|
garbageValue = "1384899025"
|
|
)
|
|
@Export("expandBounds")
|
|
void expandBounds(WorldMapArea var1);
|
|
|
|
@ObfuscatedName("f")
|
|
@ObfuscatedSignature(
|
|
signature = "(IIIB)Z",
|
|
garbageValue = "93"
|
|
)
|
|
@Export("containsCoord")
|
|
boolean containsCoord(int var1, int var2, int var3);
|
|
|
|
@ObfuscatedName("q")
|
|
@ObfuscatedSignature(
|
|
signature = "(IIB)Z",
|
|
garbageValue = "4"
|
|
)
|
|
@Export("containsPosition")
|
|
boolean containsPosition(int var1, int var2);
|
|
|
|
@ObfuscatedName("w")
|
|
@ObfuscatedSignature(
|
|
signature = "(IIII)[I",
|
|
garbageValue = "1545934424"
|
|
)
|
|
@Export("position")
|
|
int[] position(int var1, int var2, int var3);
|
|
|
|
@ObfuscatedName("o")
|
|
@ObfuscatedSignature(
|
|
signature = "(III)Lhu;",
|
|
garbageValue = "-1916486802"
|
|
)
|
|
@Export("coord")
|
|
TileLocation coord(int var1, int var2);
|
|
|
|
@ObfuscatedName("u")
|
|
@ObfuscatedSignature(
|
|
signature = "(Lgr;B)V",
|
|
garbageValue = "-113"
|
|
)
|
|
@Export("read")
|
|
void read(Buffer var1);
|
|
}
|