# Tic-Tac-Toe

> Single Player mode -> coming soon

## Usage

```bash
$ npm install tictactoe-easy --save
```
or
```bash
$ yarn add tictactoe-easy
```

```js
const { multiplayer } = require('tictactoe-easy');
const player1 = [1]; // these are moves made by player 1
const player2 = [2]; // these are moves made by player 2
multiplayer(player1, player2);
```
