Metadata-Version: 2.4
Name: nextrpg
Version: 0.1.28
Summary: Build your next RPG (Role Playing Game).
Home-page: https://github.com/yx-z/nextrpg
Author: yx-z
Author-email: yx-z <yx-z@outlook.com>
Requires-Python: >=3.14
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: pygame-ce
Requires-Dist: pytmx
Dynamic: author
Dynamic: home-page
Dynamic: license-file
Dynamic: requires-python

# nextrpg

![Python ≥3.14](https://img.shields.io/badge/python-%E2%89%A53.14-blue.svg)
![License: MIT](https://img.shields.io/badge/License-MIT-green.svg)

Build your next RPG (Role Playing Game).

```
pip install nextrpg
```

## Example

Bring up Tiled map editor...

![Tiled](example/screenshot/tiled.png)

And turn your Python code (Yes, what comes after `:` are annotations!)

```python
npc: "Nice to meet you! What's your name?"
player: f"Hello {npc.name}! I am {player.name}."
```

into an RPG game scene!

![Scene](example/screenshot/scene.png)

Plus, the debug information is just one-click away.

![Debug](example/screenshot/debug.png)
