Lots of new features

See release for more info
This commit is contained in:
Tyler
2025-04-29 16:38:33 -10:00
committed by GitHub
parent 265dff3329
commit 6ad2b65aba
20 changed files with 2034 additions and 442 deletions
+12
View File
@@ -0,0 +1,12 @@
// 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();
});