Package games.stendhal.client.gui.map

Examples of games.stendhal.client.gui.map.MapPanelController


   * Create the left side panel of the client.
   *
   * @return A component containing the components left of the game screen
   */
  private JComponent createLeftPanel() {
    minimap = new MapPanelController(client);
    final StatsPanelController stats = StatsPanelController.get();
    final BuddyPanelController buddies = new BuddyPanelController();
    ScrolledViewport buddyScroll = new ScrolledViewport((JComponent) buddies.getComponent());
    buddyScroll.setScrollingSpeed(SCROLLING_SPEED);
    final JComponent buddyPane = buddyScroll.getComponent();
View Full Code Here

TOP

Related Classes of games.stendhal.client.gui.map.MapPanelController

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.