From 85c804fa112fd1f19c91e45d150a787cfbf0f7a8 Mon Sep 17 00:00:00 2001 From: Shawn Buckley Date: Sun, 18 Oct 2015 23:04:39 -0400 Subject: Move source directory --- .../gregtech/api/events/BlockScanningEvent.java | 41 ---------------------- 1 file changed, 41 deletions(-) delete mode 100644 main/java/gregtech/api/events/BlockScanningEvent.java (limited to 'main/java/gregtech/api/events') 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 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 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 -- cgit