Code viewer for Mind: Bomber Mind
function Mind() { 


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


	this.newRun = function()
	{
	};


	this.getAction = function ( x )		// x is an array of [ ai, aj, ei, ej, agentbombi, agentbombj, enemybombi, enemybombj ]
	{ 
	};



	this.endRun = function()
	{
	};


}