Package org.rsbot.event.listeners

Examples of org.rsbot.event.listeners.PaintListener


  public void setupListener() {
    if (menuListenerStarted) {
      return;
    }
    menuListenerStarted = true;
    methods.bot.getEventManager().addListener(new PaintListener() {
      public void onRepaint(final Graphics g) {
        synchronized (menuCacheLock) {
          menuOptionsCache = getOptions();
          menuActionsCache = getActions();
        }
View Full Code Here

TOP

Related Classes of org.rsbot.event.listeners.PaintListener

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.