TechReborn/src/main/java/techreborn/partSystem/ICustomHighlight.java
2015-04-20 21:30:24 +01:00

13 lines
320 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);
}