5 lines
75 B
Java
5 lines
75 B
Java
package game.biome;
|
|
|
|
public enum Temperature {
|
|
SEA, COLD, MEDIUM, WARM;
|
|
}
|