Created
May 14, 2017 23:08
-
-
Save z3t0/a787355f53561298513ad5dfd2b594e7 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let Logger = require('./m_log.js') | |
class Game { | |
name: string | |
logger: any | |
constructor (name: string) { | |
this.name = name | |
this.logger = new Logger({this.name}) | |
} | |
} | |
module.exports = Game |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment