wyrian/js/DisplayController.js

8 lines
123 B
JavaScript
Raw Normal View History

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