blob: 9801294b812436ccec379c348c641842bc3c3bf4 [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();
}