15 lines
No EOL
293 B
Java
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);
|
|
} |