1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
package gregtech.api.events;
import net.minecraft.block.Block;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.tileentity.TileEntity;
import net.minecraft.world.World;
import java.util.ArrayList;
@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;
}
}
|