package net.fabricmc.fabric.impl.renderer;
import java.util.List;
import net.fabricmc.api.EnvType;
import net.fabricmc.api.Environment;
@Environment(EnvType.CLIENT)
public interface BatchingRenderCommandQueueExtension {
List<ExtendedBlockCommand> fabric_getExtendedBlockCommands();
List<ExtendedBlockStateModelCommand> fabric_getExtendedBlockStateModelCommands();
}
Download file