Mekanism-tilera-Edition/common/codechicken/multipart/IRandomUpdateTick.scala
2014-01-04 13:16:24 -05:00

12 lines
No EOL
268 B
Scala

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()
}