001 package net.minecraft.src; 002 003 public interface IEntitySelector 004 { 005 /** 006 * Return whether the specified entity is applicable to this filter. 007 */ 008 boolean isEntityApplicable(Entity var1); 009 }