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 void
onBeforeMenuRender(BeforeMenuRender event)
void
onConfigChanged(ConfigChanged config)
void
onGameStateChanged(GameStateChanged gameStateChanged)
void
onMenuOpened(MenuOpened event)
void
onPostClientTick(PostClientTick event)
void
onPostHealthBarConfig(PostHealthBarConfig postHealthBar)
void
onScriptCallbackEvent(ScriptCallbackEvent 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
-
onGameStateChanged
@Subscribe public void onGameStateChanged(GameStateChanged gameStateChanged)
-
onConfigChanged
@Subscribe public void onConfigChanged(ConfigChanged config)
-
onMenuOpened
@Subscribe(priority=1.0f) public void onMenuOpened(MenuOpened event)
-
onScriptCallbackEvent
@Subscribe public void onScriptCallbackEvent(ScriptCallbackEvent event)
-
onPostClientTick
@Subscribe public void onPostClientTick(PostClientTick event)
-
onPostHealthBarConfig
@Subscribe public void onPostHealthBarConfig(PostHealthBarConfig postHealthBar)
-
onBeforeMenuRender
@Subscribe public void onBeforeMenuRender(BeforeMenuRender event)
-
-