Package org.spout.vanilla.protocol.msg.entity

Examples of org.spout.vanilla.protocol.msg.entity.EntityTileDataMessage


  }

  @EventHandler
  public void onEntityTileData(EntityTileDataEvent event) {
    Block b = event.getBlock();
    event.getMessages().add(new EntityTileDataMessage(b.getX(), b.getY(), b.getZ(), event.getAction(), event.getData(), getRepositionManager()));
  }
View Full Code Here


    int x = buffer.readInt();
    int y = buffer.readShort();
    int z = buffer.readInt();
    byte action = buffer.readByte();
    CompoundMap data = ByteBufUtils.readCompound(buffer);
    return new EntityTileDataMessage(x, y, z, action, data, NullRepositionManager.getInstance());
  }
View Full Code Here

TOP

Related Classes of org.spout.vanilla.protocol.msg.entity.EntityTileDataMessage

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.