package amidst.minecraft.remote; public class NetBiome { public int id, color; public String name; public NetBiome() { } public NetBiome(int id, String name, int color) { this.id = id; this.name = name; this.color = color; } }