Code viewer for Mind: Cloned Ancient Brain Assig...

// Cloned by James O'Boyle on 18 Nov 2018 from Mind "Ancient Brain Assignment - CA318" by James O'Boyle 
// Please leave this clone trail here.
 
 
function Mind() 
{ 
	
	this.newRun = function()                  
	{
	};


	this.getAction = function ( state )		 
	{ 
	    //var agent_action
	    
	    var e = getEnemyAction();
	    return (0, e)
	}

		 
	this.endRun = function()                 
	{
	};

}