mirror of
https://github.com/wassname/GarageServer.IO.git
synced 2026-06-27 16:10:34 +08:00
14 lines
221 B
JavaScript
14 lines
221 B
JavaScript
exports = module.exports = EntityController;
|
|
|
|
function EntityController () {
|
|
this.entities = [];
|
|
}
|
|
|
|
EntityController.prototype = {
|
|
add: function (id) {
|
|
|
|
},
|
|
remove: function (id) {
|
|
|
|
}
|
|
}; |