superb-warfare/src/main/java/net/mcreator/superbwarfare/headshot/IHeadshotBox.java
2024-07-27 02:20:09 +08:00

15 lines
No EOL
293 B
Java

package net.mcreator.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);
}