14 lines
271 B
Java
14 lines
271 B
Java
package appeng.client.gui.widgets;
|
|
|
|
import net.minecraft.client.gui.screen.Screen;
|
|
|
|
/**
|
|
* Indicates that a widget (anything that is in the {@link Screen#children()}
|
|
* list) should receive callbacks every tick.
|
|
*/
|
|
public interface ITickingWidget {
|
|
|
|
void tick();
|
|
|
|
}
|