ActionRet HoldemTournamentAIManual::headsUp(const TableTexture& t, bool debug)
{
	ActionRet ret;
	ret.name="headsUp";
	ret.action=FOLD;
	ret.amt=0;

	profile_line(" -- headsUp() -- ");

	if (table->getPlayersAlive()==2&&table->getBB()>=320) {
		ret.action=BET;
		ret.amt=allin();
	}

	return ret;
}