mirror of
https://github.com/plexusorg/Plex.git
synced 2025-07-12 17:38:34 +00:00
tttt
This commit is contained in:
22
src/main/java/dev/plex/world/NoiseOptions.java
Normal file
22
src/main/java/dev/plex/world/NoiseOptions.java
Normal file
@ -0,0 +1,22 @@
|
||||
package dev.plex.world;
|
||||
|
||||
import lombok.Getter;
|
||||
|
||||
@Getter
|
||||
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;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user