Package org.pokenet.client.ui.frames

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


            && (y >= p.getY() + m_mapMatrix.getCurrentMap().getYOffset() && y <= p.getY() + 40 + m_mapMatrix.getCurrentMap().getYOffset())) {
          // Brings up a popup menu with player options
          if (!p.isOurPlayer()){
            if (getDisplay().containsChild(m_playerDialog))
              getDisplay().remove(m_playerDialog);
            m_playerDialog = new PlayerPopupDialog(p.getUsername());
            m_playerDialog.setLocation(x, y);
            getDisplay().add(m_playerDialog);
          }
        }
      }
View Full Code Here

TOP

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

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.