mirror of
https://github.com/VolmitSoftware/Iris.git
synced 2025-12-29 12:09:07 +00:00
MCA Data Pack Support for custom biomes
This commit is contained in:
11
src/main/java/com/volmit/iris/nms/BiomeBaseInjector.java
Normal file
11
src/main/java/com/volmit/iris/nms/BiomeBaseInjector.java
Normal file
@@ -0,0 +1,11 @@
|
||||
package com.volmit.iris.nms;
|
||||
|
||||
@FunctionalInterface
|
||||
public interface BiomeBaseInjector {
|
||||
default void setBiome(int x, int z, Object biomeBase)
|
||||
{
|
||||
setBiome(x, 0, z, biomeBase);
|
||||
}
|
||||
|
||||
void setBiome(int x, int y, int z, Object biomeBase);
|
||||
}
|
||||
Reference in New Issue
Block a user