15 lines
366 B
JavaScript
15 lines
366 B
JavaScript
class SessionManager {
|
|
constructor() {
|
|
this.startAt = Date.now();
|
|
this.endedAt = null;
|
|
this.currency = [0, 0, 0, 0]
|
|
this.kills = [0, 0, 0, 0, 0];
|
|
this.experience = 0;
|
|
this.sunkCount = 0;
|
|
this.packets = {};
|
|
this.ammunition = {};
|
|
this.harpoon = {};
|
|
};
|
|
};
|
|
|
|
module.exports = SessionManager; |