Skip to content

Instantly share code, notes, and snippets.

@gb
Created December 6, 2012 13:09
Show Gist options
  • Save gb/4224350 to your computer and use it in GitHub Desktop.
Save gb/4224350 to your computer and use it in GitHub Desktop.
CloneBOT
var Robot = function(robot) {
robot.clone();
};
Robot.prototype.onIdle = function(ev) {
};
Robot.prototype.onScannedRobot = function(ev) {
};
Robot.prototype.onHitByBullet = function(ev) {
};
Robot.prototype.onRobotCollision = function(ev) {
};
Robot.prototype.onWallCollision = function(ev) {
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment