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

26 lines
566 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;
public class NoiseOptions
{
@Getter
private final int x;
@Getter
private final int y;
@Getter
private final double frequency;
@Getter
private final double amplitude;
@Getter
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;
}
}