mirror of
https://github.com/wassname/GarageServer.IO.git
synced 2026-07-19 11:19:49 +08:00
11 lines
136 B
JavaScript
11 lines
136 B
JavaScript
exports = module.exports = Entity;
|
|
|
|
function Entity () {
|
|
this.state;
|
|
this.sequence = 1;
|
|
this.id;
|
|
}
|
|
|
|
Entity.prototype = {
|
|
|
|
}; |