Skip to content

Instantly share code, notes, and snippets.

View nvenegas's full-sized avatar

Nicolas Venegas nvenegas

View GitHub Profile
@nvenegas
nvenegas / bitsquest.js
Created July 7, 2013 21:17
Navigation systems for Bit's Quest — http://bitsquest.bitbucket.org/
var bit = this;
function navigate(thruster) {
return function () {
bit.thrusters[thruster](true);
return {
stop: function () {
bit.thrusters[thruster](false);
}
};