Might be easier to not put this under my package since my tools dont expect it there

This commit is contained in:
Adam
2016-03-06 17:10:29 -05:00
parent d73a52b9fb
commit ec6fb4bc11
225 changed files with 1 additions and 224 deletions

View File

@@ -0,0 +1,35 @@
import java.awt.Component;
import java.awt.event.MouseWheelEvent;
import java.awt.event.MouseWheelListener;
import net.runelite.mapping.ObfuscatedGetter;
import net.runelite.mapping.ObfuscatedName;
@ObfuscatedName("ep")
public class class144 extends class130 implements MouseWheelListener {
@ObfuscatedName("j")
@ObfuscatedGetter(
intValue = -1726578061
)
int field2217 = 0;
@ObfuscatedName("l")
public void vmethod3057(Component var1) {
var1.removeMouseWheelListener(this);
}
public synchronized void mouseWheelMoved(MouseWheelEvent var1) {
this.field2217 += var1.getWheelRotation();
}
@ObfuscatedName("a")
public synchronized int vmethod3058() {
int var1 = this.field2217;
this.field2217 = 0;
return var1;
}
@ObfuscatedName("j")
public void vmethod3060(Component var1) {
var1.addMouseWheelListener(this);
}
}