// Cloned by James O'Boyle on 19 Nov 2018 from Mind "Ancient Brain Assignment - CA318" by James O'Boyle // Please leave this clone trail here. function Mind() { this.newRun = function() { }; this.getAction = function ( state ) { return (AB.randomIntAtoB(0,3)); }; this.endRun = function() { }; }