Initial commit

This commit is contained in:
2026-08-24 22:20:36 +02:00
commit 62f7b1278a
251 changed files with 16670 additions and 0 deletions
+15
View File
@@ -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;