wyrian/js/InputController.js
2011-02-12 02:43:29 +01:00

8 lines
126 B
JavaScript

var InputController = function() {
var that = {};
that.observe = function() {
console.log("input");
};
return that;
};