lithekod / snake-ribs

A simple python code skeletons for making games.
MIT License
0 stars 2 forks source link

Snake-ribs logo

Snake-Ribs

A simple Python code skeleton for making games. The code has documentation in the docs folder, and all code that is needed to get up and running is Python, Pygame and the two magical files we've provided.

Getting started

First off, clone the repository and cd into it.

# With HTTPS
git clone https://github.com/lithekod/snake-ribs.git
cd snake-ribs

Running snake-ribs requires pygame, which can be installed using the following command.

pip install -r requirements.txt

Documentation

The documentation for RIBS can be found at https://lithekod.github.io/snake-ribs/

Running the game

RIBS comes with a sample game which you can modify to make it your own. To run it, simply call

python3 game.py

To modify the game, open game.py and make your own changes.