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.
		
		
		
		
		
			
		
			
				
	
	
		
			21 lines
		
	
	
		
			612 B
		
	
	
	
		
			Java
		
	
			
		
		
	
	
			21 lines
		
	
	
		
			612 B
		
	
	
	
		
			Java
		
	
package net.minecraft.entity.monster;
 | 
						|
 | 
						|
import net.minecraft.command.IEntitySelector;
 | 
						|
import net.minecraft.entity.Entity;
 | 
						|
import net.minecraft.entity.passive.IAnimals;
 | 
						|
 | 
						|
public interface IMob extends IAnimals
 | 
						|
{
 | 
						|
    /** Entity selector for IMob types. */
 | 
						|
    IEntitySelector mobSelector = new IEntitySelector()
 | 
						|
    {
 | 
						|
        private static final String __OBFID = "CL_00001688";
 | 
						|
        /**
 | 
						|
         * Return whether the specified entity is applicable to this filter.
 | 
						|
         */
 | 
						|
        public boolean isEntityApplicable(Entity p_82704_1_)
 | 
						|
        {
 | 
						|
            return p_82704_1_ instanceof IMob;
 | 
						|
        }
 | 
						|
    };
 | 
						|
} |