Skip to content

Commit

Permalink
📝 renaming termap -> mapscii
Browse files Browse the repository at this point in the history
  • Loading branch information
rastapasta committed Apr 26, 2017
1 parent a583244 commit 3706ec7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions main.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*#
termap - Terminal Map Viewer
mapscii - Terminal Map Viewer
by Michael Strassburger <[email protected]>
Discover the planet in your console!
Expand All @@ -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();
4 changes: 2 additions & 2 deletions src/Termap.coffee → src/Mapscii.coffee
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
###
termap - Terminal Map Viewer
mapscii - Terminal Map Viewer
by Michael Strassburger <[email protected]>
UI and central command center
Expand All @@ -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
Expand Down

0 comments on commit 3706ec7

Please sign in to comment.