Removed redundant code (moved to BCLib lists)

This commit is contained in:
paulevsGitch 2021-10-26 14:13:26 +03:00
parent 8a1490f00e
commit 9c1c1edb12
10 changed files with 18 additions and 115 deletions

View file

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

View file

@ -1,7 +0,0 @@
package ru.betterend.interfaces;
public interface ShuffelingListExtended<U> {
public boolean isEmpty();
public U getOne();
}