function Player(name, id, nextMove) {
  this.name = name
  this.id = id || String.fromCharCode(Player.id++)
  this.nextMove = nextMove || function() { throw 'nextMove must be assigned' }
}

Player.id = 'a'.charCodeAt(0)
