Skip to content

Instantly share code, notes, and snippets.

View dakerfp's full-sized avatar

Daker Fernandes Pinheiro dakerfp

View GitHub Profile
@dakerfp
dakerfp / robot.js
Created December 4, 2012 01:17
halfling
var IDLE = 0;
var SCANNED = 1;
//FightCode can only understand your robot
//if its class is called Robot
var Robot = function(robot) {
this.state = IDLE;
};