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(); | |
} |