Code viewer for Mind: Drone Mind
// 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.endRun = function()
	{
	};

	this.getAction = function ( )		// x is an array of [ ai, aj, ak, gi, gj, gk ]
	{ 
	};
}