TechReborn/ToAddBack/partSystem/ICustomHighlight.java
Modmuss50 abb9b5102f 2731
2015-11-23 14:49:35 +00:00

14 lines
358 B
Java

package techreborn.partSystem;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.util.AxisAlignedBB;
import net.minecraft.world.World;
import java.util.ArrayList;
public interface ICustomHighlight {
ArrayList<AxisAlignedBB> getBoxes(World world, int x, int y, int z,
EntityPlayer player);
}