Class InteractHighlightPlugin
- java.lang.Object
-
- net.runelite.client.plugins.Plugin
-
- net.runelite.client.plugins.interacthighlight.InteractHighlightPlugin
-
- All Implemented Interfaces:
com.google.inject.Module
@PluginDescriptor(name="Interact Highlight", description="Outlines npcs and objects you interact with or hover over", enabledByDefault=false) public class InteractHighlightPlugin extends Plugin
-
-
Constructor Summary
Constructors Constructor Description InteractHighlightPlugin()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidonGameStateChanged(net.runelite.api.events.GameStateChanged gameStateChanged)voidonGameTick(net.runelite.api.events.GameTick gameTick)voidonInteractingChanged(net.runelite.api.events.InteractingChanged interactingChanged)voidonMenuOptionClicked(net.runelite.api.events.MenuOptionClicked menuOptionClicked)voidonNpcDespawned(net.runelite.api.events.NpcDespawned npcDespawned)protected voidshutDown()protected voidstartUp()-
Methods inherited from class net.runelite.client.plugins.Plugin
configure, equals, getInjector, getName, hashCode, resetConfiguration
-
-
-
-
Method Detail
-
onGameStateChanged
@Subscribe public void onGameStateChanged(net.runelite.api.events.GameStateChanged gameStateChanged)
-
onNpcDespawned
@Subscribe public void onNpcDespawned(net.runelite.api.events.NpcDespawned npcDespawned)
-
onGameTick
@Subscribe public void onGameTick(net.runelite.api.events.GameTick gameTick)
-
onInteractingChanged
@Subscribe public void onInteractingChanged(net.runelite.api.events.InteractingChanged interactingChanged)
-
onMenuOptionClicked
@Subscribe public void onMenuOptionClicked(net.runelite.api.events.MenuOptionClicked menuOptionClicked)
-
-