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

8 lines
157 B
Java

package net.minecraft.world.entity;
import org.jetbrains.annotations.Nullable;
public interface Attackable {
@Nullable
LivingEntity getLastAttacker();
}