Metadata-Version: 2.1
Name: ZTTT
Version: 0.0.2
Summary: A Tic Tac Toe Library with a near perfect engine
Home-page: https://github.com/Sigma1084/ZTicTacToe
Author: Sumanth NR
Author-email: sumanthnr62@gmail.com
License: MIT
Platform: UNKNOWN
Description-Content-Type: text/markdown

# ZTTT

## Installation
``pip install ZTTT``

## Project Structure

```txt
ZTicTacToe
├── examples
│   └── __init__.py
│
├── src
│   └── ZTTT
│       ├── ZTBase
│       │   ├── __init__.py
│       │   ├── ZTBaseBoard.py
│       │   └── ZTBaseEngine.py
│       ├── ZTEngines
│       │   ├── __init__.py
│       │   ├── ZTEngineFirst.py
│       │   └── ZTPlayerFirst.py
│       ├── ZTErrors
│       │   ├── __init__.py
│       │   └── ZTErrors.py
│       ├── __init__.py
│       ├── PvC.py
│       └── PvP.py
│
├── tests
│   ├── __init__.py
│   └── test.py
│
├── .gitignore
├── LICENSE.txt
├── README.md
└── setup.py
```

## Usage
Examples will be eventually uploaded
```python
from ZTTT import PvP, PvC

b = PvP()

if b.status:
    b.play(0)  # Player 1 plays in the top Right

if b.status:
    b.play(1)  # Player 2 plays in the top Middle
```


