Package org.pokenet.client.ui.frames

Examples of org.pokenet.client.ui.frames.BattleBag


   */
  public void showBag() {
    attackPane.setVisible(false);
    endPane.setVisible(false);
    pokesContainer.setVisible(false);
    m_bag = new BattleBag();
    m_bag.setAlwaysOnTop(true);
    m_bag.setZIndex(10000000); // Ridiculous z-index ensures that the bag is on top.
    GameClient.getInstance().getDisplay().add(m_bag);
  }
View Full Code Here

TOP

Related Classes of org.pokenet.client.ui.frames.BattleBag

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.