Skip to content

Instantly share code, notes, and snippets.

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