Skip to content

Instantly share code, notes, and snippets.

View Ghabriel's full-sized avatar

Ghabriel Nunes Ghabriel

  • 13:25 (UTC -03:00)
View GitHub Profile
@Ghabriel
Ghabriel / robot.js
Created December 4, 2012 19:32 — forked from mwclarkson/robot.js
Out Of Cheese Error v2.0
//FightCode can only understand your robot
//if its class is called Robot
var Robot = function(robot) {
};
Robot.prototype.onIdle = function(ev) {
var robot = ev.robot;
robot.ahead(90);
@Ghabriel
Ghabriel / robot.js
Created December 4, 2012 15:59
Coolbot 9000
//FightCode can only understand your robot
//if its class is called Robot
var id;
var Robot = function(robot) {
id = this.id;
};
Robot.prototype.onIdle = function(ev) {
var robot = ev.robot;