001 package cpw.mods.fml.common; 002 003 public 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 * @param tick 010 * @return 011 */ 012 public int nextTickSpacing(); 013 }