runelite-mixins: add depth to hd minimap

This commit is contained in:
Dennis
2018-07-25 00:09:36 +02:00
committed by Lucwousin
parent 2b9277c3c2
commit cac1b15c33
3 changed files with 254 additions and 25 deletions

View File

@@ -472,10 +472,6 @@ public interface RSClient extends RSGameShell, Client
@Override
int getGameCycle();
// unused
//@Import("packetHandler")
//void packetHandler();
@Import("Messages_channels")
@Override
Map getChatLineMap();

View File

@@ -13,6 +13,12 @@ public interface RSScene extends Scene
@Override
RSTile[][][] getTiles();
@Import("tileShape2D")
int[][] getTileShape2D();
@Import("tileRotation2D")
int[][] getTileRotation2D();
@Import("drawTile")
void draw(Tile tile, boolean var2);