Package pu.web.client.gui.impl

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


      {
        //PM YO
      }
      else
      {
        PU_Text text = new PU_Text(PUWeb.resources().getFont(Fonts.FONT_ARIALBLK_BOLD_14));
        if(name.equals(PUWeb.game().getSelf().getName()))
        {
          text.add(name + ": ", 150, 1, 150);
        }
        else
        {
          text.add(name + ": ", 0, 27, 150);
        }
       
        text.add(message, 0, 0, 0);
       
        if(channel == PU_ChatChannel.CHANNEL_LOCAL)
        {
          PUWeb.game().getOnscreenChat().add(name, message);
        }
View Full Code Here

TOP

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

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.