Class InterfaceStylesPlugin
- java.lang.Object
-
- net.runelite.client.plugins.Plugin
-
- net.runelite.client.plugins.interfacestyles.InterfaceStylesPlugin
-
- All Implemented Interfaces:
com.google.inject.Module
@PluginDescriptor(name="Interface Styles", description="Change the interface style to the 2005/2010 interface", tags={"2005","2010","skin","theme","ui","hp","bar"}, enabledByDefault=false) public class InterfaceStylesPlugin extends Plugin
-
-
Constructor Summary
Constructors Constructor Description InterfaceStylesPlugin()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidonBeforeMenuRender(net.runelite.api.events.BeforeMenuRender event)voidonConfigChanged(ConfigChanged config)voidonGameStateChanged(net.runelite.api.events.GameStateChanged gameStateChanged)voidonMenuOpened(net.runelite.api.events.MenuOpened event)voidonPostClientTick(net.runelite.api.events.PostClientTick event)voidonPostHealthBarConfig(net.runelite.api.events.PostHealthBarConfig postHealthBar)voidonScriptCallbackEvent(net.runelite.api.events.ScriptCallbackEvent 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
-
onGameStateChanged
@Subscribe public void onGameStateChanged(net.runelite.api.events.GameStateChanged gameStateChanged)
-
onConfigChanged
@Subscribe public void onConfigChanged(ConfigChanged config)
-
onMenuOpened
@Subscribe(priority=1.0f) public void onMenuOpened(net.runelite.api.events.MenuOpened event)
-
onScriptCallbackEvent
@Subscribe public void onScriptCallbackEvent(net.runelite.api.events.ScriptCallbackEvent event)
-
onPostClientTick
@Subscribe public void onPostClientTick(net.runelite.api.events.PostClientTick event)
-
onPostHealthBarConfig
@Subscribe public void onPostHealthBarConfig(net.runelite.api.events.PostHealthBarConfig postHealthBar)
-
onBeforeMenuRender
@Subscribe public void onBeforeMenuRender(net.runelite.api.events.BeforeMenuRender event)
-
-