// Cloned by James Toolen on 8 Nov 2018 from Mind "New Mind" by James Toolen
// Please leave this clone trail here.
function Mind()
{
this.newRun = function()
{
};
this.getAction = function ( state )
{
console.log(state);
console.log(state[0]);
return ( 0 );
};
this.endRun = function()
{
};
}