13 lines
		
	
	
	
		
			500 B
		
	
	
	
		
			Java
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
	
		
			500 B
		
	
	
	
		
			Java
		
	
	
	
	
	
| package net.minecraft.client.resources.model;
 | |
| 
 | |
| import net.fabricmc.api.EnvType;
 | |
| import net.fabricmc.api.Environment;
 | |
| import net.minecraft.client.renderer.block.model.TextureSlots;
 | |
| 
 | |
| @FunctionalInterface
 | |
| @Environment(EnvType.CLIENT)
 | |
| public interface UnbakedGeometry {
 | |
| 	UnbakedGeometry EMPTY = (textureSlots, modelBaker, modelState, modelDebugName) -> QuadCollection.EMPTY;
 | |
| 
 | |
| 	QuadCollection bake(TextureSlots textureSlots, ModelBaker modelBaker, ModelState modelState, ModelDebugName modelDebugName);
 | |
| }
 |