Biome
This commit is contained in:
18
core/src/main/java/mc/core/world/Biome.java
Normal file
18
core/src/main/java/mc/core/world/Biome.java
Normal file
@@ -0,0 +1,18 @@
|
||||
package mc.core.world;
|
||||
|
||||
import lombok.Getter;
|
||||
|
||||
public enum Biome {
|
||||
PLAIN(0, "Plain"),
|
||||
DESERT(1, "Desert");
|
||||
|
||||
@Getter
|
||||
private final int id;
|
||||
@Getter
|
||||
private final String name;
|
||||
|
||||
Biome(int id, String name) {
|
||||
this.id = id;
|
||||
this.name = name;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user