// 
// Decompiled by Procyon v0.6.0
// 

package com.hypixel.hytale.builtin.hytalegenerator.referencebundle;

import javax.annotation.Nonnull;
import com.hypixel.hytale.builtin.hytalegenerator.framework.interfaces.functions.BiDouble2DoubleFunction;

public class BaseHeightReference extends Reference
{
    @Nonnull
    private final BiDouble2DoubleFunction heightFunction;
    
    public BaseHeightReference(@Nonnull final BiDouble2DoubleFunction heightFunction) {
        this.heightFunction = heightFunction;
    }
    
    @Nonnull
    public BiDouble2DoubleFunction getHeightFunction() {
        return this.heightFunction;
    }
}
