Code/net/minecraft/world/entity/TraceableEntity.java

8 lines
145 B
Java

package net.minecraft.world.entity;
import javax.annotation.Nullable;
public interface TraceableEntity {
@Nullable
Entity getOwner();
}