diff --git a/src/com/massivecraft/massivecore/command/type/enumeration/TypeWeatherType.java b/src/com/massivecraft/massivecore/command/type/enumeration/TypeWeatherType.java new file mode 100644 index 00000000..14c1396e --- /dev/null +++ b/src/com/massivecraft/massivecore/command/type/enumeration/TypeWeatherType.java @@ -0,0 +1,18 @@ +package com.massivecraft.massivecore.command.type.enumeration; + +import org.bukkit.WeatherType; + +public class TypeWeatherType extends TypeEnum +{ + // -------------------------------------------- // + // INSTANCE & CONSTRUCT + // -------------------------------------------- // + + private static TypeWeatherType i = new TypeWeatherType(); + public static TypeWeatherType get() { return i; } + public TypeWeatherType() + { + super(WeatherType.class); + } + +}