diff options
Diffstat (limited to 'main/java/gregtech/api/events/BlockScanningEvent.java')
-rw-r--r-- | main/java/gregtech/api/events/BlockScanningEvent.java | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/main/java/gregtech/api/events/BlockScanningEvent.java b/main/java/gregtech/api/events/BlockScanningEvent.java deleted file mode 100644 index 927919f5ba..0000000000 --- a/main/java/gregtech/api/events/BlockScanningEvent.java +++ /dev/null @@ -1,41 +0,0 @@ -package gregtech.api.events; - -import java.util.ArrayList; - -import net.minecraft.block.Block; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.tileentity.TileEntity; -import net.minecraft.world.World; - -@cpw.mods.fml.common.eventhandler.Cancelable -public class BlockScanningEvent extends net.minecraftforge.event.world.WorldEvent { - - public final EntityPlayer mPlayer; - public final int mX, mY, mZ, mScanLevel; - public final ArrayList<String> mList; - public final byte mSide; - public final float mClickX, mClickY, mClickZ; - public final TileEntity mTileEntity; - public final Block mBlock; - - /** - * used to determine the amount of Energy this Scan is costing. - */ - public int mEUCost = 0; - - public BlockScanningEvent(World aWorld, EntityPlayer aPlayer, int aX, int aY, int aZ, byte aSide, int aScanLevel, Block aBlock, TileEntity aTileEntity, ArrayList<String> aList, float aClickX, float aClickY, float aClickZ) { - super(aWorld); - mPlayer = aPlayer; - mScanLevel = aScanLevel; - mTileEntity = aTileEntity; - mBlock = aBlock; - mList = aList; - mSide = aSide; - mX = aX; - mY = aY; - mZ = aZ; - mClickX = aClickX; - mClickY = aClickY; - mClickZ = aClickZ; - } -}
\ No newline at end of file |