Code viewer for Mind: Cloned Cloned New Mind

// Cloned by Quinc3y on 15 Nov 2018 from Mind "Cloned New Mind" by Quinc3y 
// Please leave this clone trail here.
 


// Cloned by Quinc3y on 15 Nov 2018 from Mind "New Mind" by Quinc3y 
// Please leave this clone trail here.
 


function Mind() 

{ 
	
	this.newRun = function(x)                  
	{
	    ai = x[0]
	    aj = x[1]
	    ei = x[2]
	    ej = a[3]
	    
	   
	    if (ai > ei && aj == ej){
	        return(1);
	
	    }
	     else if (ai < ei && aj == ej){
	         return(0);
	    
	    }
	    else if (ai == ei && aj > ej){
	        return(2);
	    }
	    else if (ai == ei && aj < ej){
	        return(3);
	    }
	    
	   
	    
	};


	this.getAction = function ( state )	
	
	{ 
	  
	  
	  
	  return ();		 		
	};

		 
	this.endRun = function()                 
	{
	};

}