public class PatrolState implements State {
  public State checkTriggers(Guard g) {
	  //state transitions
    if (we see the user)
      return new ChaseState();
    return this;
  }

  public void behavior(Guard g, float delta) {
	  //turn left, then right
  }
}
