Skip to content

Instantly share code, notes, and snippets.

View omichel's full-sized avatar
🪲
Working on Webots

Olivier Michel omichel

🪲
Working on Webots
View GitHub Profile
@omichel
omichel / robot.js
Created December 10, 2012 13:26 — forked from dudadornelles/robot.js
Shrimp Hunter
var RobotState = function () {
data = {};
data.isLookingAtTarget = false;
return data;
};
var goodRobot = RobotState();
var evilRobot = RobotState();