A simple Snake game built using Python's turtle module.
- Classic snake movement (Up, Down, Left, Right).
- Food spawning for the snake to grow.
- Score tracking with a scoreboard.
- Game over when the snake collides with the wall or itself.
- Ensure you have Python installed (Python 3 recommended).
- Clone this repository:
git clone https://github.com/your-username/snake-game.git cd snake-game
Install dependencies (if any, but turtle is included with Python).
python main.py
Use arrow keys to move the snake.
Eat food to grow and increase your score.
Avoid hitting walls and yourself!
main.py - Runs the game.
snake.py - Controls snake movement.
food.py - Handles food spawning.
scoreboard.py - Displays and updates the score.
Gavin Barro