Cuz why not

This commit is contained in:
Tyler
2026-04-20 00:51:29 -04:00
committed by GitHub
parent 2a5eb3ff04
commit 7a27d314a2
14 changed files with 0 additions and 1835 deletions
-13
View File
@@ -1,13 +0,0 @@
/**
* 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();
});