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
17 lines
428 B
Java
17 lines
428 B
Java
import net.runelite.mapping.Export;
|
|
import net.runelite.mapping.Implements;
|
|
import net.runelite.mapping.ObfuscatedName;
|
|
import net.runelite.mapping.ObfuscatedSignature;
|
|
|
|
@ObfuscatedName("lm")
|
|
@Implements("PlatformInfoProvider")
|
|
public interface PlatformInfoProvider {
|
|
@ObfuscatedName("m")
|
|
@ObfuscatedSignature(
|
|
signature = "(I)Llb;",
|
|
garbageValue = "-843739713"
|
|
)
|
|
@Export("get")
|
|
PlatformInfo get();
|
|
}
|