6 lines
135 B
TypeScript
6 lines
135 B
TypeScript
|
|
import { Game } from './Game.js';
|
||
|
|
import { render } from './UI.js';
|
||
|
|
|
||
|
|
const game = Game.create('data/world01.json');
|
||
|
|
render(game);
|