import net.runelite.mapping.Export; import net.runelite.mapping.Implements; import net.runelite.mapping.ObfuscatedName; import net.runelite.mapping.ObfuscatedSignature; @ObfuscatedName("gg") @Implements("WorldMapSprite") public final class WorldMapSprite { @ObfuscatedName("w") @Export("tileColors") final int[] tileColors; WorldMapSprite() { this.tileColors = new int[4096]; // L: 11 } // L: 12 WorldMapSprite(int[] var1) { this.tileColors = var1; // L: 15 } // L: 16 @ObfuscatedName("w") @ObfuscatedSignature( descriptor = "(III)I", garbageValue = "1338701397" ) @Export("getTileColor") final int getTileColor(int var1, int var2) { return this.tileColors[var1 + var2 * 64]; // L: 41 } }