package mightypork.gamecore.gui; /** * Element that can be assigned an action (ie. button); * * @author MightyPork */ public interface ActionTrigger { void setAction(Action action); }