diff --git a/main.js b/main.js index 1c5efd8..b55184c 100644 --- a/main.js +++ b/main.js @@ -1,5 +1,5 @@ /*# - termap - Terminal Map Viewer + mapscii - Terminal Map Viewer by Michael Strassburger Discover the planet in your console! @@ -9,7 +9,7 @@ #*/ require('coffee-script/register'); -const Termap = require('./src/Termap'); +const Mapscii = require('./src/Mapscii'); -termap = new Termap(); -termap.init(); +mapscii = new Mapscii(); +mapscii.init(); diff --git a/src/Termap.coffee b/src/Mapscii.coffee similarity index 98% rename from src/Termap.coffee rename to src/Mapscii.coffee index e9469be..73a6247 100644 --- a/src/Termap.coffee +++ b/src/Mapscii.coffee @@ -1,5 +1,5 @@ ### - termap - Terminal Map Viewer + mapscii - Terminal Map Viewer by Michael Strassburger UI and central command center @@ -14,7 +14,7 @@ TileSource = require './TileSource' utils = require './utils' config = require './config' -module.exports = class Termap +module.exports = class Mapscii width: null height: null canvas: null