20 lines
298 B
Java
20 lines
298 B
Java
package org.bukkit.event.block;
|
|
|
|
import org.bukkit.event.Event;
|
|
|
|
/**
|
|
* @author durron597
|
|
*
|
|
*/
|
|
public class BlockIgniteEvent extends Event {
|
|
|
|
/**
|
|
* @param type
|
|
*/
|
|
public BlockIgniteEvent(Type type) {
|
|
super(type);
|
|
// TODO Auto-generated constructor stub
|
|
}
|
|
|
|
}
|