expose widget flags

This commit is contained in:
Dennis
2018-03-29 00:29:18 +02:00
committed by Adam
parent 502cf8dfb2
commit 6e5f0a6f4d
3 changed files with 8 additions and 0 deletions

View File

@@ -160,6 +160,8 @@ public interface Client extends GameEngine
int getSetting(Varbits varbit); int getSetting(Varbits varbit);
HashTable getWidgetFlags();
HashTable getComponentTable(); HashTable getComponentTable();
GrandExchangeOffer[] getGrandExchangeOffers(); GrandExchangeOffer[] getGrandExchangeOffers();

View File

@@ -28,5 +28,7 @@ import java.util.Collection;
public interface HashTable public interface HashTable
{ {
Node get(long value);
Collection<Node> getNodes(); Collection<Node> getNodes();
} }

View File

@@ -273,6 +273,10 @@ public interface RSClient extends RSGameEngine, Client
@Import("createSprite") @Import("createSprite")
RSSpritePixels createItemSprite(int itemId, int quantity, int thickness, int borderColor, int stackable, boolean noted); RSSpritePixels createItemSprite(int itemId, int quantity, int thickness, int borderColor, int stackable, boolean noted);
@Import("widgetFlags")
@Override
RSHashTable getWidgetFlags();
@Import("componentTable") @Import("componentTable")
@Override @Override
RSHashTable getComponentTable(); RSHashTable getComponentTable();