Files
PacCrypt-Webapp/static/js/main.js
T
2026-04-20 00:54:02 -04:00

14 lines
333 B
JavaScript

/**
* Main application entry point.
* Initializes UI and game components when the DOM is loaded.
*/
import { setupUI } from './ui.js';
import { setupGame } from './pacman.js';
// Initialize application when DOM is fully loaded
window.addEventListener("DOMContentLoaded", () => {
setupUI();
setupGame();
});