feat: move to typescript, miniplex ecs

This commit is contained in:
2026-09-05 12:07:22 +05:00
parent 63f9885e46
commit f6596f765e
69 changed files with 3932 additions and 1838 deletions
+8
View File
@@ -0,0 +1,8 @@
import { bootstrapGame } from '../app/GameApp'
const canvas = document.getElementById('game-canvas') as HTMLCanvasElement | null
if (!canvas) throw new Error('Shooting Word: не найден #game-canvas')
bootstrapGame(canvas).catch((error) => {
console.error('Shooting Word: ошибка запуска', error)
})