mirror of
https://github.com/rastapasta/mapscii.git
synced 2024-11-08 01:04:01 +01:00
16 lines
321 B
JavaScript
16 lines
321 B
JavaScript
/*#
|
|
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
|
|
#*/
|
|
require('coffee-script/register');
|
|
|
|
const Mapscii = require('./src/Mapscii');
|
|
|
|
mapscii = new Mapscii();
|
|
mapscii.init();
|