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.
		
		
		
		
		
			
		
			
				
	
	
		
			16 lines
		
	
	
		
			379 B
		
	
	
	
		
			Java
		
	
			
		
		
	
	
			16 lines
		
	
	
		
			379 B
		
	
	
	
		
			Java
		
	
package net.minecraft.client.resources;
 | 
						|
 | 
						|
import cpw.mods.fml.relauncher.Side;
 | 
						|
import cpw.mods.fml.relauncher.SideOnly;
 | 
						|
import java.io.InputStream;
 | 
						|
import net.minecraft.client.resources.data.IMetadataSection;
 | 
						|
 | 
						|
@SideOnly(Side.CLIENT)
 | 
						|
public interface IResource
 | 
						|
{
 | 
						|
    InputStream getInputStream();
 | 
						|
 | 
						|
    boolean hasMetadata();
 | 
						|
 | 
						|
    IMetadataSection getMetadata(String p_110526_1_);
 | 
						|
} |