api: fix finding widget parents and make isHidden check parent

This commit is contained in:
Adam
2017-04-23 16:00:44 -04:00
parent ee137229b0
commit db2a86d75d
7 changed files with 164 additions and 3 deletions

View File

@@ -27,7 +27,7 @@ package net.runelite.rs.api;
import net.runelite.mapping.Import;
public interface WidgetNode
public interface WidgetNode extends Node
{
@Import("id")
int getId();

View File

@@ -25,7 +25,13 @@
package net.runelite.rs.api;
import net.runelite.mapping.Import;
public interface XHashTable
{
//Node get(long var1);
@Import("size")
int getSize();
@Import("buckets")
Node[] getBuckets();
}