Files
tower/ts/tower.ts
Ian Gulliver f3dee2adf0 Init
2021-05-08 20:30:37 +00:00

18 lines
428 B
TypeScript

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.set_size(20, 20);
map.set_tileset('tropical');
};
main();