com.parzivail.util.gen.biome.BiomeList Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pswg Show documentation
Show all versions of pswg Show documentation
Explore the galaxy with Galaxies: Parzi's Star Wars Mod!
package com.parzivail.util.gen.biome;
import com.google.common.collect.BiMap;
import com.google.common.collect.HashBiMap;
public class BiomeList
{
private static final BiMap BIOMES = HashBiMap.create();
private static int index = 0;
public static void register(TerrainBiome biome) {
BIOMES.put(index++, biome);
}
public static TerrainBiome get(int id) {
return BIOMES.get(id);
}
public static int getId(TerrainBiome biome) {
return BIOMES.inverse().get(biome);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy