Skip to content

Instantly share code, notes, and snippets.

@codexico
codexico / robot.js
Created December 5, 2012 05:01 — forked from rfloriano/robot.js
[CAELUM TEAM]Megatron
//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.clone();
@codexico
codexico / robot.js
Created December 5, 2012 03:35 — forked from jsyrek/robot.js
QR-bot-009
//FightCode can only understand your robot
//if its class is called Robot
var Robot = function(robot) {
var rx = robot.position.x;
var ry = robot.position.y;
var aH = robot.arenaHeight;
var aW = robot.arenaWidth;
robot.clone()
};