Plex-FAWE/src/main/java/com/sk89q/worldedit/BiomeType.java

18 lines
320 B
Java
Raw Normal View History

package com.sk89q.worldedit;
public interface BiomeType {
public static final BiomeType UNKNOWN = new BiomeType() {
public String getName() {
return "Unknown";
}
};
/**
* Get the name of this biome type.
*
* @return String
*/
public String getName();
}