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:

  1. Download the zip
  2. Extract the zip
  3. 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

 

 

 

To finish reading, please visit source site