// =================================================================================================// Sample Mind for more complex starter WWM World // =================================================================================================// World tells us agent position and enemy position// World does not tell us of existence of walls// if return invalid move (not empty square) World just ignores it and we miss a turn function randomPick ( a, b ){if( randomBoolean())return a;elsereturn b;}functionMind(){//--- public functions / interface / API ----------------------------------------------------------this.newRun =function(){};this.getAction =function( x ){};this.endRun =function(){};}