You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			27 lines
		
	
	
		
			824 B
		
	
	
	
		
			Java
		
	
			
		
		
	
	
			27 lines
		
	
	
		
			824 B
		
	
	
	
		
			Java
		
	
package net.minecraft.client.resources;
 | 
						|
 | 
						|
import cpw.mods.fml.relauncher.Side;
 | 
						|
import cpw.mods.fml.relauncher.SideOnly;
 | 
						|
import java.awt.image.BufferedImage;
 | 
						|
import java.io.IOException;
 | 
						|
import java.io.InputStream;
 | 
						|
import java.util.Set;
 | 
						|
import net.minecraft.client.resources.data.IMetadataSection;
 | 
						|
import net.minecraft.client.resources.data.IMetadataSerializer;
 | 
						|
import net.minecraft.util.ResourceLocation;
 | 
						|
 | 
						|
@SideOnly(Side.CLIENT)
 | 
						|
public interface IResourcePack
 | 
						|
{
 | 
						|
    InputStream getInputStream(ResourceLocation p_110590_1_) throws IOException;
 | 
						|
 | 
						|
    boolean resourceExists(ResourceLocation p_110589_1_);
 | 
						|
 | 
						|
    Set getResourceDomains();
 | 
						|
 | 
						|
    IMetadataSection getPackMetadata(IMetadataSerializer p_135058_1_, String p_135058_2_) throws IOException;
 | 
						|
 | 
						|
    BufferedImage getPackImage() throws IOException;
 | 
						|
 | 
						|
    String getPackName();
 | 
						|
} |