npm install @sahilsinghrana/tictactoe.js
import TicTacToe from "@sahilsinghrana/tictactoe.js";
const game = new TicTacToe();
game.board.board; // Board Array
game.play(x, y); // plays a move for user
const TicTacToe = require("@sahilsinghrana/tictactoe.js");
const game = new TicTacToe();
game.board.board; // Board Array
game.play(x, y); // plays a move for user
MIT © 2024 Sahil Singh Rana