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