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

8 lines
153 B
Java
Raw Normal View History

2025-07-01 06:20:03 +00:00
package net.minecraft.world.entity;
import javax.annotation.Nullable;
public interface Attackable {
@Nullable
LivingEntity getLastAttacker();
}