package mightypork.gamecore.control.interf; /** * Can be asked to update it's state * * @author MightyPork */ public interface Pollable { /** * Update internal state */ void poll(); }