Files
GarageServer.IO/lib/server/controllers/entitycontroller.js
T
2013-07-06 11:43:30 -04:00

14 lines
221 B
JavaScript

exports = module.exports = EntityController;
function EntityController () {
this.entities = [];
}
EntityController.prototype = {
add: function (id) {
},
remove: function (id) {
}
};