Code viewer for Mind: Cloned New Mind

// Cloned by Test Account  on 7 Dec 2017 from Mind "New Mind" by Test Account  
// Please leave this clone trail here.
 


function Mind() { 

	// Optional functions:
	// The following 3 function declarations are optional.
	// If not declared, either nothing happens, or, if a return is expected, return is taken as 0.

	
	this.newRun = function()
	{
	};


	this.getAction = function ( state )		// State format is defined by each World.
	{ 
	 return  ( action );		 		// Action format is defined by each World.
	};


	this.endRun = function()
	{
	};

}