uestla/oxer

Gomoku in PHP

dev-master 2024-10-06 20:44 UTC

This package is auto-updated.

Last update: 2024-11-06 21:05:47 UTC


README

Installation

composer require uestla/oxer

Usage

use OXer\Board;
use OXer\Coord;
use OXer\Player;

$board = new Board;
$board->play(9, 9); // O
$board->play(8, 8); // X
// ...

$board->isGameOver(); // boolean
$board->getWinner(); // Player::O / Player::X / null
$board->getWinningLines(); // array of Coord[]