/** * */ package org.bukkit.event.block; import org.bukkit.Block; /** * @author jmartin * */ public class BlockRightClickedEvent extends BlockEvent { /** * @param type * @param theBlock */ public BlockRightClickedEvent(Type type, Block theBlock) { super(type, theBlock); // TODO Auto-generated constructor stub } }