TypeWeatherType

This commit is contained in:
Olof Larsson 2016-03-17 13:47:34 +01:00
parent 2704b0bd49
commit 629fe09513

View File

@ -0,0 +1,18 @@
package com.massivecraft.massivecore.command.type.enumeration;
import org.bukkit.WeatherType;
public class TypeWeatherType extends TypeEnum<WeatherType>
{
// -------------------------------------------- //
// INSTANCE & CONSTRUCT
// -------------------------------------------- //
private static TypeWeatherType i = new TypeWeatherType();
public static TypeWeatherType get() { return i; }
public TypeWeatherType()
{
super(WeatherType.class);
}
}