12 lines
297 B
Java
12 lines
297 B
Java
|
package icbm.api;
|
||
|
|
||
|
import net.minecraft.entity.Entity;
|
||
|
import net.minecraft.item.ItemStack;
|
||
|
import net.minecraft.world.World;
|
||
|
|
||
|
public interface ITracker {
|
||
|
public void setTrackingEntity(ItemStack itemStack, Entity entity);
|
||
|
|
||
|
public Entity getTrackingEntity(World worldObj, ItemStack itemStack);
|
||
|
}
|