From 3706ec75b6724e65e227ed7563864fa13c8fb780 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20Stra=C3=9Fburger?= Date: Wed, 26 Apr 2017 18:06:28 +0200 Subject: [PATCH] :memo: renaming termap -> mapscii --- main.js | 8 ++++---- src/{Termap.coffee => Mapscii.coffee} | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) rename src/{Termap.coffee => Mapscii.coffee} (98%) 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