Files
tower/ts/tower.ts

15 lines
376 B
TypeScript
Raw Normal View History

2021-05-08 13:00:59 -07:00
import { TowerMap } from 'tower_map.js';
export function main() {
document.body.style.margin = '0';
document.body.style.backgroundColor = 'black';
const container = document.createElement('div');
document.body.appendChild(container);
container.style.width = '100vmin';
container.style.height = '100vmin';
const map = new TowerMap(container);
map.draw();
};