| package net.minecraft.world; |
| |
| import net.minecraft.world.biome.BiomeGenBase; |
| import net.minecraft.world.chunk.Chunk; |
| |
| public abstract class WorldProvider { |
| public int field_76574_g; |
| |
| public abstract String func_80007_l(); |
| public abstract String getSaveFolder(); |
| public abstract int getRespawnDimension(); |
| public int func_74889_b() { |
| throw new UnsupportedOperationException("stub!"); |
| } |
| public abstract int getHeight(); |
| public abstract int getActualHeight(); |
| public boolean canBlockFreeze(int x, int y, int z, boolean by_water) { |
| throw new UnsupportedOperationException("stub!"); |
| } |
| public boolean canSnowAt(int x, int y, int z, boolean should_check_light) { |
| throw new UnsupportedOperationException("stub!"); |
| } |
| public boolean isBlockHighHumidity(int x, int y, int z) { |
| throw new UnsupportedOperationException("stub!"); |
| } |
| public abstract boolean canDoLightning(Chunk chunk); |
| public abstract boolean canDoRainSnowIce(Chunk chunk); |
| public boolean isDaytime() { |
| throw new UnsupportedOperationException("stub!"); |
| } |
| public BiomeGenBase getBiomeGenForCoords(int x, int z) { |
| throw new UnsupportedOperationException("stub!"); |
| } |
| } |