Metadata-Version: 2.4
Name: agunreal
Version: 0.1.0
Summary: A simple package for creating AI-Enhanced games.
Author: AG
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: author
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: license-file
Dynamic: requires-python
Dynamic: summary

# AgUnreal

A simple Python package to create AI-Enhanced games.

## Installation

```bash
pip install agunreal
```

## Usage

```python
from agunreal import Game, Scene, Player, Light, Skybox

game = Game("EpicBattle")

scene = Scene("ForestArena")
scene.add(Skybox("SkyNight"))

player = Player("Knight", model="knight.fbx", spawn=(0, 0, 1))
scene.add(player)

game.load_scene(scene)
game.run()

```
