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

8 lines
123 B
JavaScript

var DisplayController = function() {
var that = {};
that.draw = function() {
console.log("draw");
};
return that;
};