9 lines
151 B
Java
9 lines
151 B
Java
package net.minecraft.util;
|
|
|
|
public interface ITickable
|
|
{
|
|
/**
|
|
* Like the old updateEntity(), except more generic.
|
|
*/
|
|
void update();
|
|
} |