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