Code viewer for Mind: Football Model Mind
//This is my mind that I used with the "Football Model World".
//It is pretty much unchanged as most of my stuff was user controlled, or defined within the world itself.


function Mind() { 


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


	this.newRun = function()
	{
	};


	this.getAction = function ( x )		// x is an array of [ ai, aj, ei, ej, bi, bj ]
	{ 
		var ai = x[0];
		var aj = x[1];
		var ei = x[2];
		var ej = x[3];
	}; 



	this.endRun = function()
	{
	};


}