mirror of
https://github.com/wassname/GarageServer.IO.git
synced 2026-08-09 11:40:29 +08:00
Moved id into base entity
This commit is contained in:
@@ -1,9 +1,9 @@
|
||||
exports = module.exports = Entity;
|
||||
|
||||
function Entity () {
|
||||
function Entity (id) {
|
||||
this.state;
|
||||
this.sequence = 1;
|
||||
this.id;
|
||||
this.id = id;
|
||||
this.stateHistory = [];
|
||||
}
|
||||
|
||||
|
||||
@@ -3,9 +3,8 @@ var Entity = require('./entity');
|
||||
exports = module.exports = Player;
|
||||
|
||||
function Player (client) {
|
||||
Entity.call(this);
|
||||
Entity.call(this, client.id);
|
||||
this.client = client;
|
||||
this.id = client.id;
|
||||
this.inputs = [];
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user