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 void
onAnimationChanged(AnimationChanged event)
void
onConfigChanged(ConfigChanged event)
void
onDecorativeObjectDespawned(DecorativeObjectDespawned event)
void
onDecorativeObjectSpawned(DecorativeObjectSpawned event)
void
onGameObjectDespawned(GameObjectDespawned event)
void
onGameObjectSpawned(GameObjectSpawned event)
void
onGameStateChanged(GameStateChanged event)
protected void
shutDown()
protected void
startUp()
-
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(GameObjectSpawned event)
-
onGameObjectDespawned
@Subscribe public void onGameObjectDespawned(GameObjectDespawned event)
-
onDecorativeObjectSpawned
@Subscribe public void onDecorativeObjectSpawned(DecorativeObjectSpawned event)
-
onDecorativeObjectDespawned
@Subscribe public void onDecorativeObjectDespawned(DecorativeObjectDespawned event)
-
onGameStateChanged
@Subscribe public void onGameStateChanged(GameStateChanged event)
-
onAnimationChanged
@Subscribe public void onAnimationChanged(AnimationChanged event)
-
-