superb-warfare/src/main/java/com/atsuishio/superbwarfare/headshot/IHeadshotBox.java
2025-03-29 05:24:05 +08:00

15 lines
No EOL
294 B
Java

package com.atsuishio.superbwarfare.headshot;
import net.minecraft.world.entity.Entity;
import net.minecraft.world.phys.AABB;
import javax.annotation.Nullable;
/**
* Author: MrCrayfish
*/
public interface IHeadshotBox<T extends Entity> {
@Nullable
AABB getHeadshotBox(T entity);
}