12 lines
		
	
	
	
		
			367 B
		
	
	
	
		
			Java
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
	
		
			367 B
		
	
	
	
		
			Java
		
	
	
	
	
	
| package net.minecraft.client.renderer.texture;
 | |
| 
 | |
| import java.io.IOException;
 | |
| import java.nio.file.Path;
 | |
| import net.fabricmc.api.EnvType;
 | |
| import net.fabricmc.api.Environment;
 | |
| import net.minecraft.resources.ResourceLocation;
 | |
| 
 | |
| @Environment(EnvType.CLIENT)
 | |
| public interface Dumpable {
 | |
| 	void dumpContents(ResourceLocation resourceLocation, Path path) throws IOException;
 | |
| }
 |