PyAct is an open-source package for python, meant to give the developers an easy way to develop games in 2d pixel-art.
basically, everything in the game is called sprite, except solid things, they called blocks. every object has 6 features:
- window - the window were this obj will appears and do his functionality.
- x - the location in the x axis of the window (in the screen with the case of window).
- y - the location in the y axis of the window (in the screen with the case of window).
- width - the width of this object.
- height - the height of this object.
- texture - how the object will look.
More information in the file "how it's work.md".
thank you! you need to git it and start suggest.