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

@@ -7,53 +7,53 @@ import net.runelite.mapping.ObfuscatedGetter;
import net.runelite.mapping.ObfuscatedName;
import net.runelite.mapping.ObfuscatedSignature;
@ObfuscatedName("r")
@ObfuscatedName("c")
@Implements("MouseWheelHandler")
public final class MouseWheelHandler implements class144, MouseWheelListener {
@ObfuscatedName("l")
@ObfuscatedName("i")
@ObfuscatedGetter(
intValue = 1769079383
intValue = 403973473
)
@Export("rotation")
int rotation;
MouseWheelHandler() {
this.rotation = 0;
}
this.rotation = 0; // L: 8
} // L: 10
@ObfuscatedName("l")
@ObfuscatedName("i")
@ObfuscatedSignature(
descriptor = "(Ljava/awt/Component;I)V",
garbageValue = "-635346378"
garbageValue = "-1467491328"
)
@Export("addTo")
void addTo(Component var1) {
var1.addMouseWheelListener(this);
}
var1.addMouseWheelListener(this); // L: 13
} // L: 14
@ObfuscatedName("q")
@ObfuscatedName("w")
@ObfuscatedSignature(
descriptor = "(Ljava/awt/Component;S)V",
garbageValue = "-29045"
descriptor = "(Ljava/awt/Component;I)V",
garbageValue = "-330102118"
)
@Export("removeFrom")
void removeFrom(Component var1) {
var1.removeMouseWheelListener(this);
}
var1.removeMouseWheelListener(this); // L: 17
} // L: 18
@ObfuscatedName("f")
@ObfuscatedName("s")
@ObfuscatedSignature(
descriptor = "(I)I",
garbageValue = "459838731"
garbageValue = "-1160529550"
)
@Export("useRotation")
public synchronized int useRotation() {
int var1 = this.rotation;
this.rotation = 0;
return var1;
int var1 = this.rotation; // L: 26
this.rotation = 0; // L: 27
return var1; // L: 28
}
public synchronized void mouseWheelMoved(MouseWheelEvent var1) {
this.rotation += var1.getWheelRotation();
}
this.rotation += var1.getWheelRotation(); // L: 22
} // L: 23
}