Metadata-Version: 2.1
Name: discord-ext-games
Version: 1.1.5
Summary: This library provides bunch of games that can be played on discord.
Home-page: https://github.com/Wiper-R/discord-ext-games
Author: Wiper-R
License: MIT
Platform: UNKNOWN
Requires-Python: >=3.6.0
Description-Content-Type: text/markdown
Requires-Dist: discord.py (>=1.6.1)

<u><h1>Tic Tac Toe</h1></u>
<h3>Example</h3>

```py
import discord
from discord.ext.games import TicTacToe
from discord.ext import commands

bot = commands.Bot("!")


@bot.event
async def on_ready():
    print("Bot is Ready!")


@bot.command()
async def ttt(ctx, member: discord.Member):
    await TicTacToe(ctx, [ctx.author, member], config={
        'down_right': 675624269073481749,
        'x':536043344569303041,
    }).start()


bot.run("")
```

