blob: 33873f3f9ece3ead638a2947959c94826e3f99b9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
package gtPlusPlus.xmod.galacticraft.system.objects;
import net.minecraft.world.biome.BiomeGenBase.Height;
public class BiomeSettings {
private final String mBiomeName;
private final int mBiomeID;
private final Height mHeight;
public BiomeSettings(String aName, int aID, float aHeightMin, float aHeightMax) {
mBiomeName = aName;
mBiomeID = aID;
mHeight = new Height(aHeightMin, aHeightMax);
}
public synchronized final String getName() {
return mBiomeName;
}
public synchronized final int getID() {
return mBiomeID;
}
public synchronized final Height getHeight() {
return mHeight;
}
}
|