fabric-renderer-api-v1-7.2.3+9be2a36e6f.jar

Download file
    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