re-add generic rendering to the API

This commit is contained in:
James Seibel
2024-07-03 22:37:52 -05:00
parent 81bfa9a02b
commit 88db5c9594
14 changed files with 454 additions and 318 deletions
@@ -20,6 +20,7 @@
package testItems.worldGeneratorInjection.objects;
import com.seibel.distanthorizons.api.enums.worldGeneration.EDhApiLevelType;
import com.seibel.distanthorizons.api.interfaces.render.IDhApiCustomRenderRegister;
import com.seibel.distanthorizons.api.interfaces.world.IDhApiDimensionTypeWrapper;
import com.seibel.distanthorizons.api.interfaces.world.IDhApiLevelWrapper;
@@ -52,4 +53,9 @@ public class LevelWrapperTest implements IDhApiLevelWrapper
@Override
public int getMinHeight() { return IDhApiLevelWrapper.super.getMinHeight(); }
@Override
public IDhApiCustomRenderRegister getRenderRegister() { return null; }
}