Removed old End Caves (temporary), added new Caves and Cave API (WIP)

This commit is contained in:
paulevsGitch 2021-03-09 02:40:26 +03:00
parent 2135fe50b5
commit 231794363b
14 changed files with 384 additions and 28 deletions

View file

@ -0,0 +1,8 @@
package ru.betterend.interfaces;
import net.minecraft.util.math.BlockPos;
import net.minecraft.world.biome.Biome;
public interface IBiomeArray {
public void setBiome(Biome biome, BlockPos pos);
}