Code viewer for World: New World
 
	
	AB.world.newRun = function()
	{
 		// Code to execute once at the start.  
		// Should call:
		//		ABWorld.init (  COLOR  ); 
	};


	AB.world.nextStep = function()		 
	{
		// Code to execute every step. 
		// Can put P5 instructions to be executed every step here, or in draw()  
 	};


	AB.world.endRun = function()
	{
	};




//---- setup -------------------------------------------------------
// Do NOT make a setup function.
// This is done for you in the API. The API setup just creates a canvas.
// Anything else you want to run at the start should go into the following two functions.


function beforesetup()      // Optional 
{
    	
	    
	}


function aftersetup()       // Optional
{
	function Nodie() {
    	    this.value= ____;
    	    this.edges= [];
    	    this.searched = false;
    	    this.parent=null;
    	}
	 
}


//---- draw -------------------------------------------------------

function draw()             // Optional
{
	// Can put P5 instructions to be executed every step here, or in AB.world.nextStep()  
}