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.
		
		
		
		
		
			
		
			
				
	
	
		
			18 lines
		
	
	
		
			480 B
		
	
	
	
		
			Java
		
	
			
		
		
	
	
			18 lines
		
	
	
		
			480 B
		
	
	
	
		
			Java
		
	
package net.minecraft.client.resources;
 | 
						|
 | 
						|
import cpw.mods.fml.relauncher.Side;
 | 
						|
import cpw.mods.fml.relauncher.SideOnly;
 | 
						|
import java.io.IOException;
 | 
						|
import java.util.List;
 | 
						|
import java.util.Set;
 | 
						|
import net.minecraft.util.ResourceLocation;
 | 
						|
 | 
						|
@SideOnly(Side.CLIENT)
 | 
						|
public interface IResourceManager
 | 
						|
{
 | 
						|
    Set getResourceDomains();
 | 
						|
 | 
						|
    IResource getResource(ResourceLocation p_110536_1_) throws IOException;
 | 
						|
 | 
						|
    List getAllResources(ResourceLocation p_135056_1_) throws IOException;
 | 
						|
} |