blob: ec5c7407776c088b6bd1f9d8d840c79b403059c8 [file] [log] [blame] [raw]
package net.minecraft.world;
public abstract class WorldProvider {
public WorldProvider() {
throw new UnsupportedOperationException("stub!");
}
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 canSnowAt(int x, int y, int z, boolean should_check_light) {
throw new UnsupportedOperationException("stub!");
}
}