All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.fastasyncworldedit.core.math.heightmap.AbstractDelegateHeightMap Maven / Gradle / Ivy

Go to download

Blazingly fast Minecraft world manipulation for artists, builders and everyone else.

There is a newer version: 2.9.2
Show newest version
package com.fastasyncworldedit.core.math.heightmap;

public class AbstractDelegateHeightMap implements HeightMap {

    private final HeightMap parent;

    public AbstractDelegateHeightMap(HeightMap parent) {
        this.parent = parent;
    }

    @Override
    public double getHeight(int x, int z) {
        return parent.getHeight(x, z);
    }

    @Override
    public void setSize(int size) {
        parent.setSize(size);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy