gomoku-tools
Version:
Tools for handling gomoku games
17 lines (12 loc) • 299 B
JavaScript
var Mnk = require('./mnk');
var _defaults = require('lodash.defaults');
function TicTacToe(config) {
this.config = _defaults({}, config, this.defaults);
}
TicTacToe.prototype = new Mnk();
TicTacToe.prototype.defaults = {
cellsX: 3,
cellsY: 3,
k: 3
};
module.exports = TicTacToe;