Package org.spout.vanilla.protocol.msg.player

Examples of org.spout.vanilla.protocol.msg.player.PlayerLocaleViewDistanceMessage


    String locale = VanillaByteBufUtils.readString(buffer);
    byte viewDistance = buffer.readByte();
    byte chatFlags = buffer.readByte();
    byte difficulty = buffer.readByte();
    boolean showCape = buffer.readByte() != 0;
    return new PlayerLocaleViewDistanceMessage(locale, viewDistance, chatFlags, difficulty, showCape);
  }
View Full Code Here

TOP

Related Classes of org.spout.vanilla.protocol.msg.player.PlayerLocaleViewDistanceMessage

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.