mapscii/main.js

18 lines
392 B
JavaScript
Raw Normal View History

/*#
2018-11-19 03:47:24 +01: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 07:40:38 +01:00
'use strict';
2017-04-26 18:06:28 +02:00
const Mapscii = require('./src/Mapscii');
2017-12-23 07:40:38 +01:00
const mapscii = new Mapscii();
2018-11-19 09:17:12 +01:00
mapscii.init().catch((err) => {
console.error('Failed to start MapSCII.');
console.error(err);
});