Skip to content
/ foolysh Public

Foolish attempt of a 2D game engine for Python

License

Notifications You must be signed in to change notification settings

tcdude/foolysh

Repository files navigation

foolysh

Simple 2D Rendering Engine based on PySDL2 with intended deployment on Android and potentially also iOS in the future.

This is a work in progress and far from being usable...

You can install foolysh using pip:

pip install git+https://github.com/tcdude/foolysh.git

see also the generated docs

Simple Example:
from foolysh import app

class MyApp(app.App):
    def __init__(self):
        super().__init__('MyApp')
        self.task_manager.add_task('quitter', self.quit, delay=5,
                                   with_dt=False, args=(False, ))


MyApp().run()

About

Foolish attempt of a 2D game engine for Python

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published