Added block events

This commit is contained in:
durron597
2010-12-30 17:16:06 -05:00
parent 0b29a78cc3
commit a65fae29d4
8 changed files with 229 additions and 0 deletions

View File

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