mirror of
https://github.com/rastapasta/mapscii.git
synced 2024-11-22 08:03:07 +01:00
19 lines
395 B
JavaScript
19 lines
395 B
JavaScript
/*#
|
|
termap - 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 fs = require('fs');
|
|
const Termap = require(__dirname+'/src/Termap');
|
|
const Tile = require(__dirname+'/src/Tile')
|
|
|
|
termap = new Termap();
|
|
termap.init();
|