Code viewer for Mind: Evade the Dog Mind
// =================================================================================================
// Sample Mind for more complex starter WWM World  
// =================================================================================================


// World tells us agent position and enemy position
// World does not tell us of existence of walls
// if return invalid move (not empty square) World just ignores it and we miss a turn 

function randomPick ( a, b )
{
 if ( randomBoolean() ) 
  return a;
 else
  return b;
}

function Mind() { 

//--- public functions / interface / API ----------------------------------------------------------


	this.newRun = function()
	{
	};

    this.getAction = function ( x )		 
	{ 
	};

	this.endRun = function()
	{
	};


}