client: rev 198 (#3014)

* client: rev 198

* client: checkstyle

Co-authored-by: therealnull <therealnull@gmail.com>
This commit is contained in:
Tyler Bochard
2021-07-28 07:24:38 -04:00
committed by GitHub
parent c2af17f765
commit 56ae122b89
466 changed files with 65937 additions and 65851 deletions

View File

@@ -2,22 +2,22 @@ import net.runelite.mapping.Export;
import net.runelite.mapping.Implements;
import net.runelite.mapping.ObfuscatedName;
@ObfuscatedName("ha")
@ObfuscatedName("hu")
@Implements("Wrapper")
public abstract class Wrapper extends DualNode {
@ObfuscatedName("e")
@ObfuscatedName("t")
@Export("size")
final int size;
Wrapper(int var1) {
this.size = var1; // L: 9
} // L: 10
this.size = var1;
}
@ObfuscatedName("f")
@ObfuscatedName("s")
@Export("get")
abstract Object get();
@ObfuscatedName("e")
@ObfuscatedName("t")
@Export("isSoft")
abstract boolean isSoft();
}