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