Metadata-Version: 2.1
Name: typergame
Version: 0.2.4
Summary: A library to easily set up typergames.
Author: drooler
Description-Content-Type: text/markdown

# Typergame.py

### By @drooler (https://bit.ly/drooler)

Current version: V0.2.4

## Update logs

V0.1.0 - First build

V0.1.1 - Bug fixes

V0.2.0 - Added costum user stats

V0.2.1 to V0.2.4 - Bug fixes

## How to set up

### 1- Install with pip

Run `pip install typergame`

### 2- Create a .py and paste in the template code

Template code:
```py
import typergame

game = typergame.Typergame("Project name", ["exit"])

running = True

while running:

    command = game.user.run()

    if command == "exit":

        running = False
        game.functions.write("Press enter to exit")

    input()
    game.functions.clear()
```

### 3- Build your game: add commands, add user stats,...

