Package org.spout.vanilla.protocol.msg.world.block

Examples of org.spout.vanilla.protocol.msg.world.block.BlockBulkMessage


      coordinates[coordinateIndex++] = (short) ((record >> 24) & 0x0F);
      types[i] = (short) ((record >> 4) & 0xFFF);
      metadata[i] = (byte) ((record >> 0) & 0xF);
    }

    return new BlockBulkMessage(chunkX, chunkZ, coordinates, types, metadata, NullRepositionManager.getInstance());
  }
View Full Code Here

TOP

Related Classes of org.spout.vanilla.protocol.msg.world.block.BlockBulkMessage

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.