Skip to content

Instantly share code, notes, and snippets.

@z3t0
Created May 14, 2017 23:18
Show Gist options
  • Save z3t0/7829f125b30ef458d8c6cb8836a8ad14 to your computer and use it in GitHub Desktop.
Save z3t0/7829f125b30ef458d8c6cb8836a8ad14 to your computer and use it in GitHub Desktop.
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