13 lines
323 B
Java
13 lines
323 B
Java
|
package net.minecraft.world.entity.ai.behavior;
|
||
|
|
||
|
import net.minecraft.core.BlockPos;
|
||
|
import net.minecraft.world.entity.LivingEntity;
|
||
|
import net.minecraft.world.phys.Vec3;
|
||
|
|
||
|
public interface PositionTracker {
|
||
|
Vec3 currentPosition();
|
||
|
|
||
|
BlockPos currentBlockPosition();
|
||
|
|
||
|
boolean isVisibleBy(LivingEntity p_23739_);
|
||
|
}
|