wyrian/js/InputController.js

8 lines
126 B
JavaScript
Raw Normal View History

2011-02-12 00:35:54 +00:00
var InputController = function() {
var that = {};
2011-02-12 00:35:54 +00:00
that.observe = function() {
console.log("input");
2011-02-12 00:35:54 +00:00
};
return that;
2011-02-12 00:35:54 +00:00
};