Files
pirate-corsaire-server/Game/Session.js
T
2026-08-24 22:20:36 +02:00

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;