1package net.minecraft.server; 2 3public abstract class EntityWeather extends Entity { 4 5 public EntityWeather(World world) { 6 super(world); 7 } 8}