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

package com.hypixel.hytale.server.worldgen.util;

import com.hypixel.hytale.procedurallib.NoiseFunction;
import com.hypixel.hytale.procedurallib.property.SingleNoiseProperty;
import com.hypixel.hytale.procedurallib.property.NoiseProperty;
import com.hypixel.hytale.procedurallib.logic.ConstantNoise;

public final class ConstantNoiseProperty
{
    private static final ConstantNoise DEFAULT_ZERO_NOISE;
    public static final NoiseProperty DEFAULT_ZERO;
    private static final ConstantNoise DEFAULT_ONE_NOISE;
    public static final NoiseProperty DEFAULT_ONE;
    
    private ConstantNoiseProperty() {
        throw new UnsupportedOperationException();
    }
    
    static {
        DEFAULT_ZERO_NOISE = new ConstantNoise(0.0);
        DEFAULT_ZERO = new SingleNoiseProperty(0, ConstantNoiseProperty.DEFAULT_ZERO_NOISE);
        DEFAULT_ONE_NOISE = new ConstantNoise(1.0);
        DEFAULT_ONE = new SingleNoiseProperty(0, ConstantNoiseProperty.DEFAULT_ONE_NOISE);
    }
}
