Plex-FAWE/src/main/java/com/sk89q/worldedit/BiomeType.java
aumgn e86dc2c90b Biome clean up & fixes
Change BiomeType to an interface.
Do not longer use invalid biomes of Bukkit Biome enum.
Add a common unknown biome type.
2012-04-10 13:09:47 +02:00

18 lines
320 B
Java

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();
}