Python Game Development Engine (Pygame-based).
Table of Contents
xodex is a library for building
Documentation: https://github.io/djoezeke/xodex
Source Code: https://github.com/djoezeke/xodex
Install using pip:
$ pip install xodexThis will install xodex with minimal dependencies.
$ pip install 'xodex[standard]'xodex stands on the shoulders of a giant. Its only internal required dependency is Pygame.
By default it also comes with extra standard dependencies:
rich: to show nicely formatted texts automatically.
- 💬 Join the Discussions: Share your insights, provide feedback, or ask questions.
- 🐛 Report Issues: Submit bugs found or log feature requests for the
xodexproject. - 💡 Submit Pull Requests: Review open PRs, and submit your own PRs.
Contributing Guidelines
- Fork the Repository: Start by forking the project repository to your github account.
- Clone Locally: Clone the forked repository to your local machine using a git client.
git clone --recursive https://github.com/djoezeke/xodex
- Create a New Branch: Always work on a new branch, giving it a descriptive name.
git checkout -b new-feature-x
- Make Your Changes: Develop and test your changes locally.
- Commit Your Changes: Commit with a clear message describing your updates.
git commit -m 'Implemented new feature x.' - Push to github: Push the changes to your forked repository.
git push origin new-feature-x
- Submit a Pull Request: Create a PR against the original project repository. Clearly describe the changes and their motivations.
- Review: Once your PR is reviewed and approved, it will be merged into the main branch. Congratulations on your contribution!
This project is protected under the MIT License. For more details, refer to the LICENSE file.