A Game Engine Made in Python with the Pygame Module
A Game Engine Made in Python with the Pygame Module
Discord: https://discord.gg/MPPqj9PNt3
To Install, type
pip install mandaw
To Get The Latest Version of MandawEngine:
- Download the zip
- Extract the zip
- Navigate to the folder in cmd or terminal and type:
On Windows:
python setup.py install
On Mac and Linux
python3 setup.py install
import Mandaw
from mandaw import *
Make a window
from mandaw import *
mandaw = Mandaw()
while True:
mandaw.run()
Make a simple square
square = GameObject(mandaw, "rect", x = 0, y = 0, color = "red", width = 20, height = 20)
Center it with
square.center()
Draw it
while True:
square.draw()
from mandaw import *
mandaw = Mandaw("First Mandaw Game")
square