Add stub ChunkLoadingRenderGlobal for 1.7.10

Allows us to get rid of all preprocessor guards around its usages.
This commit is contained in:
Jonas Herzig
2021-02-23 12:01:15 +01:00
parent c729654f04
commit ab5b101f96
5 changed files with 14 additions and 22 deletions

View File

@@ -0,0 +1,11 @@
package com.replaymod.render.hooks;
import net.minecraft.client.renderer.RenderGlobal;
public class ChunkLoadingRenderGlobal {
public ChunkLoadingRenderGlobal(RenderGlobal renderGlobal) {
}
public void uninstall() {
}
}