Package pu.web.client.gui.impl

Examples of pu.web.client.gui.impl.PU_ChatPanel


   
    mBattlePanel = new PU_BattlePanel(0, 0, PU_Engine.SCREEN_WIDTH, PU_Engine.SCREEN_HEIGHT);
    mBattlePanel.setVisible(false);
    PUWeb.gui().getRoot().addChild(mBattlePanel);
   
    mChatPanel = new PU_ChatPanel(0, 0, PU_Engine.SCREEN_WIDTH, PU_Engine.SCREEN_HEIGHT);
    mChatPanel.setVisible(false);
    PUWeb.gui().getRoot().addChild(mChatPanel);
  }
View Full Code Here


        if(channel == PU_ChatChannel.CHANNEL_LOCAL)
        {
          PUWeb.game().getOnscreenChat().add(name, message);
        }
       
        PU_ChatPanel chatPanel = PUWeb.game().getChatPanel();
        if(chatPanel != null)
        {
          chatPanel.addMessage(channel, text);
        }
      }
    }
  }
View Full Code Here

TOP

Related Classes of pu.web.client.gui.impl.PU_ChatPanel

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.