Bukkit/src/org/bukkit/event/block/BlockRightClickedEvent.java
2010-12-30 17:16:06 -05:00

24 lines
361 B
Java

/**
*
*/
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
}
}