001package cpw.mods.fml.common;
002
003public interface IScheduledTickHandler extends ITickHandler
004{
005    /**
006     * Return the number of actual ticks that will pass
007     * before your next tick will fire. This will be called
008     * just after your last tick fired to compute the next delay.
009     * @return Time until next tick
010     */
011    public int nextTickSpacing();
012}