import {statusElement} from "/scripts/interface/game/html.js" export function updateConnectionStatus(connection) { statusElement.textContent = `Server Connection: ${connection}` switch (connection) { case "connected": statusElement.style.color = "green"; break; case "disconnected": statusElement.style.color = "red"; break; } }