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