Refactor ahead of changes for #3

This commit is contained in:
Jeremiah Billmann
2013-07-06 11:43:30 -04:00
parent 6da3628ad4
commit 67caaf00ec
6 changed files with 81 additions and 62 deletions
@@ -1,7 +1,14 @@
exports = module.exports = EntityController;
function EntityController () {
this.entities = [];
}
EntityController.prototype = {
add: function (id) {
},
remove: function (id) {
}
};