mapscii/main.js

18 wiersze
392 B
JavaScript
Czysty Zwykły widok Historia

/*#
2018-11-19 02:47:24 +00:00
MapSCII - Terminal Map Viewer
by Michael Strassburger <codepoet@cpan.org>
Discover the planet in your console!
This scripts boots up the application.
TODO: params parsing and so on
#*/
2017-12-23 06:40:38 +00:00
'use strict';
2017-04-26 16:06:28 +00:00
const Mapscii = require('./src/Mapscii');
2017-12-23 06:40:38 +00:00
const mapscii = new Mapscii();
2018-11-19 08:17:12 +00:00
mapscii.init().catch((err) => {
console.error('Failed to start MapSCII.');
console.error(err);
});