Welcome to the Games repository!
This project contains a collection of simple games implemented in Python and C. It is ideal for learning, experimenting, and having fun with basic game development concepts.
- Python (55.9%)
Contains games and scripts written in Python, focusing on rapid prototyping, logic, and easy-to-understand code. - C (44.1%)
Contains games written in C, ideal for understanding lower-level programming, memory management, and efficient execution.
- Multiple game demos in Python and C
- Well-organized codebase for educational purposes
- Simple games to help understand game logic and development basics
- Python 3.x for Python games
- GCC or any C compiler for C games
- Navigate to the Python game directory.
- Run the desired game:
python <game_file>.py
- Navigate to the C game directory.
- Compile the game:
gcc <game_file>.c -o <game_name>
- Run the game:
./<game_name>
Contributions are welcome!
Feel free to submit pull requests for new games, improvements, or bug fixes.
This repository is open source and available under the MIT License.
Enjoy playing and learning!