Initial commit
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
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;
|
||||
Reference in New Issue
Block a user