Python games demonstrating GoudEngine's Python SDK.
main.py— Basic SDK demo: window creation, rendering, input handlingflappy_bird.py— Flappy Bird clone mirroring the C#flappy_goudexamplerun_demo.sh— Helper script to run Python demosREADME.md— Python examples documentation
./dev.sh --sdk python --game python_demo # Run main.py demo
./dev.sh --sdk python --game flappy_bird # Run Flappy Bird
./examples/python/run_demo.sh # Direct run via helper- Import from
goudenginepackage (sdks/python/goudengine/) flappy_bird.pymirrors C#flappy_goudfor SDK parity validation- Examples use snake_case (Python convention)
- Keep examples readable — they serve as SDK documentation
- NEVER import from engine internals — use the public
goudenginepackage only - NEVER add dependencies beyond the standard library and goudengine