whole bunch of refactoring client

This commit is contained in:
ThatGamerBlue
2020-04-11 13:00:01 +01:00
parent 5fdefb98f6
commit bb255a6da2
58 changed files with 225 additions and 187 deletions

View File

@@ -0,0 +1,16 @@
import net.runelite.mapping.Export;
import net.runelite.mapping.Implements;
import net.runelite.mapping.ObfuscatedName;
import net.runelite.mapping.ObfuscatedSignature;
@ObfuscatedName("dg")
@Implements("PlayerProvider")
public interface PlayerProvider {
@ObfuscatedName("x")
@ObfuscatedSignature(
signature = "(I)Ldw;",
garbageValue = "65536"
)
@Export("player")
PcmPlayer player();
}