rsc: please read the commit message for my neverending descent into madness

how do i stop making castles
every time i go to the beach i make a castle
every time i open blender i model castles
every time i play chess i castle
i just cant stop making castles dude
This commit is contained in:
ThatGamerBlue
2021-02-26 00:33:45 +00:00
parent 62df7e0ff1
commit 563587e6b0
346 changed files with 84175 additions and 82557 deletions

View File

@@ -10,46 +10,50 @@ import net.runelite.mapping.ObfuscatedSignature;
@ObfuscatedName("bn")
@Implements("MouseWheelHandler")
public final class MouseWheelHandler implements MouseWheel, MouseWheelListener {
@ObfuscatedName("n")
@ObfuscatedGetter(
intValue = 2059879703
)
@Export("rotation")
int rotation = 0;
@ObfuscatedName("n")
@ObfuscatedGetter(
intValue = 2059879703
)
@Export("rotation")
int rotation;
@ObfuscatedName("n")
@ObfuscatedSignature(
descriptor = "(Ljava/awt/Component;I)V",
garbageValue = "-1000758187"
)
@Export("addTo")
void addTo(Component var1) {
var1.addMouseWheelListener(this);
}
MouseWheelHandler() {
this.rotation = 0; // L: 8
} // L: 10
@ObfuscatedName("v")
@ObfuscatedSignature(
descriptor = "(Ljava/awt/Component;I)V",
garbageValue = "-1520122283"
)
@Export("removeFrom")
void removeFrom(Component var1) {
var1.removeMouseWheelListener(this);
}
@ObfuscatedName("n")
@ObfuscatedSignature(
descriptor = "(Ljava/awt/Component;I)V",
garbageValue = "-1000758187"
)
@Export("addTo")
void addTo(Component var1) {
var1.addMouseWheelListener(this); // L: 13
} // L: 14
@ObfuscatedName("d")
@ObfuscatedSignature(
descriptor = "(S)I",
garbageValue = "-7695"
)
@Export("useRotation")
public synchronized int useRotation() {
int var1 = this.rotation;
this.rotation = 0;
return var1;
}
@ObfuscatedName("v")
@ObfuscatedSignature(
descriptor = "(Ljava/awt/Component;I)V",
garbageValue = "-1520122283"
)
@Export("removeFrom")
void removeFrom(Component var1) {
var1.removeMouseWheelListener(this); // L: 17
} // L: 18
public synchronized void mouseWheelMoved(MouseWheelEvent var1) {
this.rotation += var1.getWheelRotation();
}
@ObfuscatedName("d")
@ObfuscatedSignature(
descriptor = "(S)I",
garbageValue = "-7695"
)
@Export("useRotation")
public synchronized int useRotation() {
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(); // L: 22
} // L: 23
}