Remove unused ParticleEffect library
This commit is contained in:
parent
17321f7249
commit
0376a2cea7
@ -31,7 +31,7 @@ import com.massivecraft.massivecore.command.type.enumeration.TypeLlamaColor;
|
||||
import com.massivecraft.massivecore.command.type.enumeration.TypeMaterial;
|
||||
import com.massivecraft.massivecore.command.type.enumeration.TypeOcelotType;
|
||||
import com.massivecraft.massivecore.command.type.enumeration.TypeParrotVariant;
|
||||
import com.massivecraft.massivecore.command.type.enumeration.TypeParticleEffect;
|
||||
import com.massivecraft.massivecore.command.type.enumeration.TypeParticle;
|
||||
import com.massivecraft.massivecore.command.type.enumeration.TypeRabbitType;
|
||||
import com.massivecraft.massivecore.command.type.enumeration.TypeSkeletonType;
|
||||
import com.massivecraft.massivecore.command.type.enumeration.TypeSound;
|
||||
@ -311,7 +311,7 @@ public class RegistryType
|
||||
register(TypeHorseVariant.get());
|
||||
register(TypeMaterial.get());
|
||||
register(TypeOcelotType.get());
|
||||
register(TypeParticleEffect.get());
|
||||
register(TypeParticle.get());
|
||||
register(TypeSpawnReason.get());
|
||||
register(TypeRabbitType.get());
|
||||
register(TypeDamageModifier.get());
|
||||
|
@ -0,0 +1,18 @@
|
||||
package com.massivecraft.massivecore.command.type.enumeration;
|
||||
|
||||
import org.bukkit.Particle;
|
||||
|
||||
public class TypeParticle extends TypeEnum<Particle>
|
||||
{
|
||||
// -------------------------------------------- //
|
||||
// INSTANCE & CONSTRUCT
|
||||
// -------------------------------------------- //
|
||||
|
||||
private static TypeParticle i = new TypeParticle();
|
||||
public static TypeParticle get() { return i; }
|
||||
public TypeParticle()
|
||||
{
|
||||
super(Particle.class);
|
||||
}
|
||||
|
||||
}
|
@ -1,18 +0,0 @@
|
||||
package com.massivecraft.massivecore.command.type.enumeration;
|
||||
|
||||
import com.massivecraft.massivecore.particleeffect.ParticleEffect;
|
||||
|
||||
public class TypeParticleEffect extends TypeEnum<ParticleEffect>
|
||||
{
|
||||
// -------------------------------------------- //
|
||||
// INSTANCE & CONSTRUCT
|
||||
// -------------------------------------------- //
|
||||
|
||||
private static TypeParticleEffect i = new TypeParticleEffect();
|
||||
public static TypeParticleEffect get() { return i; }
|
||||
public TypeParticleEffect()
|
||||
{
|
||||
super(ParticleEffect.class);
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in New Issue
Block a user