Biome Features Updated

This commit is contained in:
Frank Bauer 2021-06-24 17:58:09 +02:00
parent aca43764ad
commit 78bf62bdca
8 changed files with 57 additions and 19 deletions

View file

@ -0,0 +1,11 @@
package ru.betterend.util;
import net.minecraft.world.entity.ai.behavior.ShufflingList;
import org.spongepowered.asm.mixin.Shadow;
import java.util.Random;
public interface ShuffelingListExtended<U> {
public boolean isEmpty();
public U getOne();
}