2015-04-20 22:28:54 +02:00
|
|
|
package techreborn.partSystem;
|
|
|
|
|
|
|
|
import net.minecraft.entity.player.EntityPlayer;
|
|
|
|
import net.minecraft.util.AxisAlignedBB;
|
|
|
|
import net.minecraft.world.World;
|
|
|
|
|
2015-07-02 20:49:30 +02:00
|
|
|
import java.util.ArrayList;
|
|
|
|
|
2015-04-20 22:28:54 +02:00
|
|
|
public interface ICustomHighlight {
|
|
|
|
|
2015-08-09 12:05:32 +02:00
|
|
|
ArrayList<AxisAlignedBB> getBoxes(World world, int x, int y, int z,
|
|
|
|
EntityPlayer player);
|
2015-04-20 22:28:54 +02:00
|
|
|
|
|
|
|
}
|