Package net.runelite.client.plugins.poh
Class PohPlugin
- java.lang.Object
-
- net.runelite.client.plugins.Plugin
-
- net.runelite.client.plugins.poh.PohPlugin
-
- All Implemented Interfaces:
com.google.inject.Module
@PluginDescriptor(name="Player-owned House", description="Show minimap icons and mark unlit/lit burners", tags={"construction","poh","minimap","overlay"}) public class PohPlugin extends Plugin
-
-
Constructor Summary
Constructors Constructor Description PohPlugin()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidonAnimationChanged(net.runelite.api.events.AnimationChanged event)voidonConfigChanged(ConfigChanged event)voidonDecorativeObjectDespawned(net.runelite.api.events.DecorativeObjectDespawned event)voidonDecorativeObjectSpawned(net.runelite.api.events.DecorativeObjectSpawned event)voidonGameObjectDespawned(net.runelite.api.events.GameObjectDespawned event)voidonGameObjectSpawned(net.runelite.api.events.GameObjectSpawned event)voidonGameStateChanged(net.runelite.api.events.GameStateChanged event)protected voidshutDown()protected voidstartUp()-
Methods inherited from class net.runelite.client.plugins.Plugin
configure, equals, getInjector, getName, hashCode, resetConfiguration
-
-
-
-
Method Detail
-
startUp
protected void startUp() throws Exception
-
shutDown
protected void shutDown() throws Exception
-
onConfigChanged
@Subscribe public void onConfigChanged(ConfigChanged event)
-
onGameObjectSpawned
@Subscribe public void onGameObjectSpawned(net.runelite.api.events.GameObjectSpawned event)
-
onGameObjectDespawned
@Subscribe public void onGameObjectDespawned(net.runelite.api.events.GameObjectDespawned event)
-
onDecorativeObjectSpawned
@Subscribe public void onDecorativeObjectSpawned(net.runelite.api.events.DecorativeObjectSpawned event)
-
onDecorativeObjectDespawned
@Subscribe public void onDecorativeObjectDespawned(net.runelite.api.events.DecorativeObjectDespawned event)
-
onGameStateChanged
@Subscribe public void onGameStateChanged(net.runelite.api.events.GameStateChanged event)
-
onAnimationChanged
@Subscribe public void onAnimationChanged(net.runelite.api.events.AnimationChanged event)
-
-