client: rev 201

This commit is contained in:
Justin
2021-11-03 22:50:34 +11:00
parent af21d0e050
commit bcc8072751
425 changed files with 65165 additions and 65696 deletions

View File

@@ -2,27 +2,27 @@ import net.runelite.mapping.Export;
import net.runelite.mapping.Implements;
import net.runelite.mapping.ObfuscatedName;
@ObfuscatedName("it")
@ObfuscatedName("id")
@Implements("DirectWrapper")
public class DirectWrapper extends Wrapper {
@ObfuscatedName("l")
@ObfuscatedName("i")
@Export("obj")
Object obj;
DirectWrapper(Object var1, int var2) {
super(var2);
this.obj = var1;
}
super(var2); // L: 7
this.obj = var1; // L: 8
} // L: 9
@ObfuscatedName("l")
@ObfuscatedName("i")
@Export("get")
Object get() {
return this.obj;
return this.obj; // L: 12
}
@ObfuscatedName("q")
@ObfuscatedName("w")
@Export("isSoft")
boolean isSoft() {
return false;
return false; // L: 16
}
}