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