24 lines
361 B
Java
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
|
|
}
|
|
|
|
}
|