summaryrefslogtreecommitdiff
path: root/src/main.ts
blob: 36d156fc11cc1a469a779808766967fdddcecce7 (plain)
1
2
3
4
5
6
7
8
9
10
11
import './styles.css';
import { CyberJumpApp } from './game/CyberJumpApp';

const root = document.querySelector<HTMLDivElement>('#app');

if (!root) {
	throw new Error('Missing #app root element.');
}

const app = new CyberJumpApp(root);
app.start();