remove log

This commit is contained in:
Mahdi Dibaiee
2015-12-12 09:50:21 +03:30
parent 6ef4f8890f
commit c8a673ad3d
3 changed files with 3 additions and 7 deletions

View File

@ -2,9 +2,8 @@ import Unit from './classes/unit';
import Interface from './classes/interface';
import fs from 'fs';
let log = fs.createWriteStream(__dirname + '/log');
let FRAME = 100;
loop();
let ui = new Interface();
@ -165,5 +164,4 @@ function gameover() {
process.on('exit', function() {
ui.cursor.horizontalAbsolute(0).eraseLine()
ui.cursor.show();
log.end();
});