Package rakama.worldtools.data

Examples of rakama.worldtools.data.Chunk.addTileEntity()


    public void addTileEntity(TileEntity e)
    {
        int x = e.getX();
        int z = e.getZ();
        Chunk chunk = manager.getChunk(x >> 4, z >> 4, true);
        chunk.addTileEntity(e);
    }
   
    public boolean removeEntity(Entity e)
    {
        int x = (int)e.getX();
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.