Initial commit

This commit is contained in:
2025-03-13 16:05:09 +01:00
commit 5950d5ae9d
44 changed files with 5505 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
const socketIO = require("socket.io");
class SocketUser {
/** @param {number} id @param {string} username @param {socketIO.Socket} socket */
constructor(id, username, socket) {
this.id = id;
this.username = username;
this.socket = socket;
}
}
module.exports = SocketUser;