minecraft-src/net/minecraft/world/entity/TraceableEntity.java
2025-07-04 01:41:11 +03:00

8 lines
149 B
Java

package net.minecraft.world.entity;
import org.jetbrains.annotations.Nullable;
public interface TraceableEntity {
@Nullable
Entity getOwner();
}