Create ICustomHighlight.java
This commit is contained in:
parent
7936fcece8
commit
f8f449cd93
1 changed files with 12 additions and 0 deletions
12
common/buildcraft/core/ICustomHighlight.java
Normal file
12
common/buildcraft/core/ICustomHighlight.java
Normal file
|
@ -0,0 +1,12 @@
|
|||
package buildcraft.core;
|
||||
|
||||
import net.minecraft.entity.player.EntityPlayer;
|
||||
import net.minecraft.util.AxisAlignedBB;
|
||||
import net.minecraft.world.World;
|
||||
|
||||
public interface ICustomHighlight{
|
||||
|
||||
public AxisAlignedBB[] getBoxes(World wrd, int x, int y, int z, EntityPlayer player);
|
||||
|
||||
public double getExpansion();
|
||||
}
|
Loading…
Add table
Reference in a new issue