public interface Behavior { // Method that checks to see if this behavior should be run public boolean takeControl(); // Method that runs the behavior public void action(); }