2016-09-21 21:52:35 +02:00
|
|
|
/*#
|
2018-11-19 03:47:24 +01:00
|
|
|
MapSCII - Terminal Map Viewer
|
2016-09-21 21:52:35 +02:00
|
|
|
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');
|
2016-09-21 21:52:35 +02:00
|
|
|
|
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);
|
|
|
|
});
|