com.yungnickyoung.minecraft.yungsapi.noise.INoiseLibrary Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of YungsApi-1.21-Fabric Show documentation
Show all versions of YungsApi-1.21-Fabric Show documentation
A common API for YUNG's Minecraft mods
The newest version!
package com.yungnickyoung.minecraft.yungsapi.noise;
/**
* Tagging interface for noise libraries (FastNoise, OpenSimplex2S)
*/
public interface INoiseLibrary {
float GetNoise(float x, float y, float z);
}