Package com.mojang.minecraft

Examples of com.mojang.minecraft.ChatLine


      }

   }

   public final void addChat(String var1) {
      this.chat.add(0, new ChatLine(var1));

      while(this.chat.size() > 50) {
         this.chat.remove(this.chat.size() - 1);
      }
View Full Code Here

TOP

Related Classes of com.mojang.minecraft.ChatLine

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.