public interface State {
  public State checkTriggers(Guard g);
  public void behavior(Guard g, float delta);
}
