BiomePicker mixin

This commit is contained in:
paulevsGitch 2021-03-18 03:36:55 +03:00
parent 46c6e9b936
commit 3bc88af019
6 changed files with 62 additions and 43 deletions

View file

@ -0,0 +1,10 @@
package ru.betterend.interfaces;
import java.util.List;
import net.minecraft.util.registry.RegistryKey;
import net.minecraft.world.biome.Biome;
public interface IBiomeList {
public List<RegistryKey<Biome>> getBiomes();
}