VANILLA STRUCTURES

This commit is contained in:
Daniel Mills
2020-11-22 07:27:24 -05:00
parent dd083f73f7
commit 6ea0bb30e0
23 changed files with 2256 additions and 24 deletions

View File

@@ -1,8 +1,10 @@
package com.volmit.iris.nms.v1X;
import com.volmit.iris.scaffold.cache.AtomicCache;
import com.volmit.iris.nms.INMSBinding;
import com.volmit.iris.nms.INMSCreator;
import com.volmit.iris.scaffold.cache.AtomicCache;
import org.bukkit.World;
import org.bukkit.block.Biome;
public class NMSBinding1X implements INMSBinding
{
@@ -13,4 +15,9 @@ public class NMSBinding1X implements INMSBinding
{
return creator.aquire(NMSCreator1X::new);
}
public Object getBiomeBase(World world, Biome biome)
{
return null;
}
}