import { createWorld } from './world' import { installGame } from './game' const world = await createWorld(document.getElementById('app')!) installGame(world) world.start()