Files
PacCrypt-Webapp/static/js/main.js
T
Tyler 6ad2b65aba Lots of new features
See release for more info
2025-04-29 16:38:33 -10:00

13 lines
253 B
JavaScript

// main.js
import { setupUI } from './ui.js';
import { setupGame } from './pacman.js';
/**
* Initialize UI and game once the DOM is fully loaded.
*/
window.addEventListener("DOMContentLoaded", () => {
setupUI();
setupGame();
});