Hinzufügen der Game Logik: Hinzufügen von Spieler-Management, Socket.IO-Integration und UI-Updates

This commit is contained in:
2025-04-01 16:16:26 +02:00
parent 5a2eaf74ca
commit 2c9a14db9a
10 changed files with 64 additions and 9 deletions

View File

@@ -44,7 +44,8 @@ class ExpressManager{
/**@param {express.Request} req @param {express.Response} res @param {express.NextFunction} next*/
logger(req, res, next){
const date = new Date();
console.log(`${date.toTimeString().slice(0, 8)} | ${req.method} | ${req.url}`);
// TODO: Lösche Kommentar wenn fertig mit testen
//console.log(`${date.toTimeString().slice(0, 8)} | ${req.method} | ${req.url}`);
next();
}