package net.minecraft.server;

public abstract class EntityWeather extends Entity {

    public EntityWeather(World world) {
        super(world);
    }
}
