/* * Forge Mod Loader * Copyright (c) 2012-2013 cpw. * All rights reserved. This program and the accompanying materials * are made available under the terms of the GNU Lesser Public License v2.1 * which accompanies this distribution, and is available at * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html * * Contributors: * cpw - implementation */ package cpw.mods.fml.common; import java.util.EnumSet; /** * * Tick handler for mods to implement and register through the TickRegistry * * The data available to each tick is documented in the TickType * * @author cpw * */ public interface ITickHandler { /** * Called at the "start" phase of a tick * * Multiple ticks may fire simultaneously- you will only be called once with all the firing ticks * * @param type * @param tickData */ public void tickStart(EnumSet<TickType> type, Object... tickData); /** * Called at the "end" phase of a tick * * Multiple ticks may fire simultaneously- you will only be called once with all the firing ticks * * @param type * @param tickData */ public void tickEnd(EnumSet<TickType> type, Object... tickData); /** * Returns the list of ticks this tick handler is interested in receiving at the minute */ public EnumSet<TickType> ticks(); /** * A profiling label for this tick handler */ public String getLabel(); }