Added block events
This commit is contained in:
23
src/org/bukkit/event/block/BlockPhysicsEvent.java
Normal file
23
src/org/bukkit/event/block/BlockPhysicsEvent.java
Normal 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
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user