fix style

This commit is contained in:
AEnterprise 2014-09-10 14:56:17 +02:00
parent cfb63644b4
commit 6b76b63ba7
3 changed files with 12 additions and 8 deletions

View file

@ -1,9 +1,10 @@
package buildcraft.api.events;
import net.minecraft.block.Block;
import net.minecraft.entity.player.EntityPlayer;
import cpw.mods.fml.common.eventhandler.Cancelable;
import cpw.mods.fml.common.eventhandler.Event;
import net.minecraft.block.Block;
import net.minecraft.entity.player.EntityPlayer;
@Cancelable
public class BlockInteractionEvent extends Event {

View file

@ -1,9 +1,11 @@
package buildcraft.api.events;
import net.minecraft.block.Block;
import net.minecraft.entity.player.EntityPlayer;
import cpw.mods.fml.common.eventhandler.Cancelable;
import cpw.mods.fml.common.eventhandler.Event;
import net.minecraft.block.Block;
import net.minecraft.entity.player.EntityPlayer;
@Cancelable
public class BlockPlacedDownEvent extends Event {

View file

@ -1,8 +1,9 @@
package buildcraft.api.events;
import cpw.mods.fml.common.eventhandler.Event;
import net.minecraft.entity.player.EntityPlayer;
import cpw.mods.fml.common.eventhandler.Event;
public class PipePlacedEvent extends Event {
public EntityPlayer player;
public String pipeType;