8 lines
149 B
Java
8 lines
149 B
Java
package net.minecraft.world.entity;
|
|
|
|
import org.jetbrains.annotations.Nullable;
|
|
|
|
public interface TraceableEntity {
|
|
@Nullable
|
|
Entity getOwner();
|
|
}
|