TechReborn/src/main/java/techreborn/partSystem/ICustomHighlight.java

15 lines
358 B
Java
Raw Normal View History

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