Skip to content

Instantly share code, notes, and snippets.

@Albitos
Albitos / robot.js
Created December 4, 2012 12:40 — forked from Symar/robot.js
Rabbit
//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(100);
@Albitos
Albitos / robot.js
Created December 7, 2012 01:19 — forked from AndreMeira/robot.js
skaicoo
//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;