Plex/src/main/java/me/totalfreedom/plex/world/NoiseOptions.java

22 lines
514 B
Java
Raw Normal View History

2020-10-31 04:58:12 +00:00
package me.totalfreedom.plex.world;
2020-10-31 04:51:22 +00:00
import lombok.Getter;
@Getter
2020-10-31 04:51:22 +00:00
public class NoiseOptions
{
private final int x;
private final int y;
private final double frequency;
private final double amplitude;
private final boolean normalized;
public NoiseOptions(int x, int y, double frequency, double amplitude, boolean normalized)
{
this.x = x;
this.y = y;
this.frequency = frequency;
this.amplitude = amplitude;
this.normalized = normalized;
}
}