Created
May 14, 2017 23:18
-
-
Save z3t0/7829f125b30ef458d8c6cb8836a8ad14 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('./logger.ts') | |
class Game { | |
name: string | |
logger: any | |
constructor (name: string) { | |
this.name = name | |
this.logger = new Logger({name: this.name}) | |
} | |
} | |
module.exports = Game |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment