public IAction chooseAction(IGame game) { if (game.player().hunger() == Hunger.FAINTING) return Actions.Pray(); else return null; }
public IAction chooseAction(IGame game) { next = next % smallCircle.length; return Actions.Move(smallCircle[next++]); }