fledgling/src/main.ts
2025-02-23 11:36:43 -08:00

7 lines
194 B
TypeScript

import { hostGame } from "./engine/internal/host.ts";
import { game } from "./game.ts";
import { getStateManager } from "./statemanager.ts";
getStateManager().startFirstGame();
hostGame(game);