blob: f689dceca31d37a1e7be7b3a6d47d50dd263820d [file] [log] [blame] [raw]
package codechicken.multipart
/**
* Interface for parts with random update ticks.
*/
trait IRandomUpdateTick
{
/**
* Called on random update. Random ticks are between 800 and 1600 ticks from their last scheduled/random tick
*/
def randomUpdate()
}