55 lines
1.3 KiB
Java
55 lines
1.3 KiB
Java
import net.runelite.mapping.Export;
|
|
import net.runelite.mapping.Implements;
|
|
import net.runelite.mapping.ObfuscatedGetter;
|
|
import net.runelite.mapping.ObfuscatedName;
|
|
import net.runelite.mapping.ObfuscatedSignature;
|
|
|
|
@ObfuscatedName("lp")
|
|
@Implements("AbstractRasterProvider")
|
|
public abstract class AbstractRasterProvider {
|
|
@ObfuscatedName("ca")
|
|
@Export("mouseCam")
|
|
static boolean mouseCam;
|
|
@ObfuscatedName("q")
|
|
@Export("pixels")
|
|
public int[] pixels;
|
|
@ObfuscatedName("w")
|
|
@ObfuscatedGetter(
|
|
intValue = -560298363
|
|
)
|
|
@Export("width")
|
|
public int width;
|
|
@ObfuscatedName("o")
|
|
@ObfuscatedGetter(
|
|
intValue = -239960145
|
|
)
|
|
@Export("height")
|
|
public int height;
|
|
|
|
@ObfuscatedName("f")
|
|
@ObfuscatedSignature(
|
|
signature = "(III)V",
|
|
garbageValue = "-430495007"
|
|
)
|
|
@Export("drawFull")
|
|
public abstract void drawFull(int x, int y);
|
|
|
|
@ObfuscatedName("q")
|
|
@ObfuscatedSignature(
|
|
signature = "(IIIIB)V",
|
|
garbageValue = "18"
|
|
)
|
|
@Export("draw")
|
|
public abstract void draw(int x, int y, int width, int height);
|
|
|
|
@ObfuscatedName("b")
|
|
@ObfuscatedSignature(
|
|
signature = "(I)V",
|
|
garbageValue = "152864133"
|
|
)
|
|
@Export("apply")
|
|
public final void apply() {
|
|
Rasterizer2D.Rasterizer2D_replace(this.pixels, this.width, this.height);
|
|
}
|
|
}
|