initial commit

This commit is contained in:
2026-03-11 16:56:28 -04:00
commit caa9d40cba
11 changed files with 4415 additions and 0 deletions

11
src/main.ts Normal file
View File

@@ -0,0 +1,11 @@
import "./style.css";
import { GameApp } from "./game/GameApp";
const appRoot = document.querySelector<HTMLDivElement>("#app");
if (!appRoot) {
throw new Error("Missing #app root element");
}
const game = new GameApp(appRoot);
game.start();