Code viewer for Mind: Cloned New Mind
// Cloned by milesj2 on 12 Nov 2018 from Mind "New Mind" by milesj2 
// Please leave this clone trxl here.
function Mind() 
{ 
	this.newRun = function()                  
	{
	};


    this.getAction = function(a)	
	{ 
	 	var x = a[0];      // x cordinate of friendly
		var y = a[1];      // y cordinate of friendly
		var x2 = a[2];      // x cordinate of enemy
		var y2 = a[3];      // y cordinate of enemy
	
	}
	
	this.endRun = function()                 
	{
	};

}