62f6ea815d
Map Parser Update
19 lines
368 B
Java
19 lines
368 B
Java
package mineplex.mapparser;
|
|
|
|
import org.bukkit.event.Event;
|
|
import org.bukkit.event.HandlerList;
|
|
|
|
public class TickEvent extends Event
|
|
{
|
|
private static final HandlerList handlers = new HandlerList();
|
|
|
|
public HandlerList getHandlers()
|
|
{
|
|
return handlers;
|
|
}
|
|
|
|
public static HandlerList getHandlerList()
|
|
{
|
|
return handlers;
|
|
}
|
|
} |