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

8 lines
153 B
Java

package net.minecraft.world.entity;
import javax.annotation.Nullable;
public interface Attackable {
@Nullable
LivingEntity getLastAttacker();
}