summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/bukkit/WeatherType.java
blob: 36b993f1c3a53d4e1f520f55fdfae82370136953 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package org.bukkit;

/**
 * An enum of all current weather types
 */
public enum WeatherType {

    /**
     * Raining or snowing depending on biome.
     */
    DOWNFALL,
    /**
     * Clear weather, clouds but no rain.
     */
    CLEAR,
    ;
}