TypeWeatherType
This commit is contained in:
parent
2704b0bd49
commit
629fe09513
@ -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);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user