001package net.minecraft.entity.effect;
002
003import net.minecraft.entity.Entity;
004import net.minecraft.world.World;
005
006public abstract class EntityWeatherEffect extends Entity
007{
008 public EntityWeatherEffect(World par1World)
009 {
010 super(par1World);
011 }
012}