UNPKG

chessjs

Version:

A chess engine.

11 lines (7 loc) 187 B
var Game = require('./game.js'); function Table(whitePlayer, blackPlayer) { this.white = whitePlayer; this.black = blackPlayer; this.game = new Game(); } module.exports = Table;