Metadata-Version: 2.1
Name: aerforge
Version: 0.2.7
Summary: A game engine made with pygame.
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 pygame.

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

```
pip install AerForge
```

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

forge = Forge()

def update():
    pass

forge.run()
```

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

forge = Forge()

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

        self.center()

cube = Cube()

def update():
    pass

forge.run()
```

