Code viewer for Mind: New Mind

function Mind() { 
	// Optional functions: Yo Yo
	// 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  ( 3 );		 		// Action format is defined by each World.
	};


	this.endRun = function()
	{
	};

}