Archived
0
This commit is contained in:
Forwolk
2018-07-27 08:16:29 +03:00
parent 19ee6d73fc
commit a9e44c98d6

View 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;
}
}