Metadata-Version: 2.1
Name: aerforge
Version: 0.1.1
Summary: A game engine made with SDL.
Home-page: https://github.com/Aermoss/AerForge
Author: Yusuf Rencber
Author-email: yusufrencber546@gmail.com
License: MIT
Platform: UNKNOWN
Description-Content-Type: text/markdown
License-File: LICENSE

# AerForge
A game engine made with SDL.

## Getting Started
1) Install Python
2) Open cmd/terminal and type:

```
pip install AerForge
```

## Examples
# Creating a window
``` python
from aerforge import *

forge = Forge()

while True:
    forge.update()
```

# Creating a cube
``` python
from aerforge import *

forge = Forge()

class Cube(Entity):
    def __init__(self):
        super().__init__(
            window = forge,
            shape = Rect,
            width = 20,
            height = 20,
            x = 0,
            y = 0,
            color = (0, 255, 255)
        )

        self.center()

cube = Cube()

while True:
    forge.drawall()
    forge.update()
```

